Fix GBA build not to build libraries that use stdlib

This commit is contained in:
2017-04-13 04:31:30 -05:00
parent c6e33e5285
commit 9183815634
4 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ BUILD_TYPE=$2
if [[ $TARGET == windows ]]; then
toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/Mingw.cmake"
elif [[ $TARGET == gba ]]; then
toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/GBA.cmake -DOX_BUILD_EXEC=OFF"
toolchain="-DCMAKE_TOOLCHAIN_FILE=cmake/Modules/GBA.cmake -DOX_USE_STDLIB=OFF"
fi
if [[ $BUILD_TYPE == debug ]]; then