Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Android build fixes for c++11
- Loading branch information
1 parent
69247ca
commit 22a891a925d68a096420d3383a2e31b58e3eb244
Showing
15 changed files
with
139 additions
and
53 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
APP_PLATFORM := ${APP_PLATFORM} | ||
APP_ABI := ${TARGET_ABI} | ||
APP_STL := gnustl_static | ||
NDK_TOOLCHAIN_VERSION := 4.9 | ||
APP_STL := c++_shared | ||
NDK_TOOLCHAIN_VERSION := ${COMPILER_VERSION} | ||
APP_DEPRECATED_HEADERS := true | ||
APP_MODULES := minetest | ||
ifndef NDEBUG | ||
APP_OPTIM := debug | ||
endif | ||
|
||
APP_CPPFLAGS += -fexceptions | ||
APP_GNUSTL_FORCE_CPP_FEATURES := rtti | ||
APP_CPPFLAGS += -fexceptions -std=c++11 -frtti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
APP_PLATFORM := ${APP_PLATFORM} | ||
APP_ABI := ${TARGET_ABI} | ||
APP_STL := gnustl_static | ||
NDK_TOOLCHAIN_VERSION := 4.9 | ||
APP_STL := c++_shared | ||
NDK_TOOLCHAIN_VERSION := ${COMPILER_VERSION} | ||
APP_DEPRECATED_HEADERS := true | ||
APP_MODULES := Irrlicht | ||
|
||
APP_CLAFGS += -mfloat-abi=softfp -mfpu=vfpv3 -O3 | ||
APP_CPPFLAGS += -fexceptions | ||
APP_CLAFGS += ${TARGET_CFLAGS_ADDON} | ||
APP_CPPFLAGS += ${TARGET_CXXFLAGS_ADDON} -fexceptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters