diff options
author | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:39:52 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2014-05-13 10:39:52 +0000 |
commit | 1b3668c6fe387c51062e85ec020271d72db02e6b (patch) | |
tree | 2183f0655a551a80c6ea734d3d01133ee9057d8a | |
parent | e78268a1ea4036d4690f2c69c3d9af162bb1bf2c (diff) |
Also use -mthumb when compiling C++ code.
git-svn-id: http://svn.telesphoreo.org/trunk@785 514c082c-b64e-11dc-b46d-3d985efe055d
-rwxr-xr-x | make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -139,7 +139,7 @@ function pkg:configure() { export -f pkg:configure function pkg:make() { - make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb -fno-common' "$@" + make CC="${PKG_TARG}-gcc" AR="${PKG_TARG}-ar" CFLAGS='-O2 -mthumb -fno-common' CXXFLAGS='-O2 -mthumb' "$@" } export -f pkg:make |