1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

C++ use means we use the C++ linker. Fixes #3129

This commit is contained in:
Alcaro 2016-06-19 21:41:00 +02:00
parent 31c1f31299
commit 6949cfde68
2 changed files with 4 additions and 3 deletions

View File

@ -732,8 +732,9 @@ ifeq ($(HAVE_FFMPEG), 1)
ifneq ($(C89_BUILD), 1)
ifneq ($(C90_BUILD), 1)
ifneq ($(HAVE_GLES), 1)
OBJ += cores/libretro-ffmpeg/fft/fft.o
DEFINES += -Ideps -DHAVE_GL_FFT
OBJ += cores/libretro-ffmpeg/fft/fft.o
CXX_BUILD = 1
DEFINES += -Ideps -DHAVE_GL_FFT
endif
endif
endif

View File

@ -228,6 +228,6 @@ bool content_rename_state(const char *origin, const char *dest)
if (!ret)
return true;
RARCH_LOG ("Error %d renaming file %s", ret, origin);
RARCH_LOG("Error %d renaming file %s\n", ret, origin);
return false;
}