28 lines
1020 B
Diff
28 lines
1020 B
Diff
|
From 00995e0b8a66fbd0eabd206188120bfc1ecdac59 Mon Sep 17 00:00:00 2001
|
||
|
Message-Id: <00995e0b8a66fbd0eabd206188120bfc1ecdac59.1398245232.git.baruch@tkos.co.il>
|
||
|
From: Baruch Siach <baruch@tkos.co.il>
|
||
|
Date: Wed, 23 Apr 2014 12:21:37 +0300
|
||
|
Subject: [PATCH] CMakeLists: don't hard code thumb code generation
|
||
|
|
||
|
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||
|
---
|
||
|
CMakeLists.txt | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 2c7f8d62a42b..cec614fba041 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -77,7 +77,7 @@ if(ANDROID_PLATFORM)
|
||
|
add_subdirectory(android/NE10Demo/jni)
|
||
|
endif()
|
||
|
elseif(GNULINUX_PLATFORM)
|
||
|
- set(CMAKE_C_FLAGS "-O2 -mthumb-interwork -mthumb -march=armv7-a -mfpu=vfp3")
|
||
|
+ set(CMAKE_C_FLAGS "-O2 -mthumb-interwork -march=armv7-a -mfpu=vfp3")
|
||
|
set(CMAKE_ASM_FLAGS "-mthumb-interwork -mthumb -march=armv7-a -mfpu=neon")
|
||
|
elseif(IOS_PLATFORM)
|
||
|
#set minimal target ios version.If not provided this option, Xcode
|
||
|
--
|
||
|
1.9.2
|
||
|
|