Change processor name from x86 to i686 for 32bit host

* to make it same as 'uname -p' result

JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com
This commit is contained in:
SaeHie Park
2015-11-06 09:15:34 +09:00
parent 17a5dd27bb
commit d11a9e1c0d
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
include(CMakeForceCompiler)
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR x86)
set(CMAKE_SYSTEM_PROCESSOR i686)
CMAKE_FORCE_C_COMPILER(afl-gcc GNU)
CMAKE_FORCE_CXX_COMPILER(afl-g++ GNU)
+1 -1
View File
@@ -13,7 +13,7 @@
# limitations under the License.
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR x86)
set(CMAKE_SYSTEM_PROCESSOR i686)
find_program(CMAKE_C_COMPILER NAMES i686-linux-gnu-gcc i686-unknown-linux-gnu-gcc)
find_program(CMAKE_CXX_COMPILER NAMES i686-linux-gnu-g++ i686-unknown-linux-gnu-g++)