Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorSaeHie Park <saehie.park@samsung.com>2017-01-09 06:53:18 +0300
committerSaeHie Park <saehie.park@samsung.com>2017-01-09 06:53:18 +0300
commit3b2ca8932c02a275f3b1b4288250f4e2632337f6 (patch)
treefd60b66a9ea4edc4af71adf80da16e08f0645e6e /cross
parentee1bc8ad5ecdfa6823711062bb6936eb2688cc25 (diff)
[x86/Linux] Change process name from x86 to i686 in cmake
As CMAKE_SYSTEM_PROCESSOR is eq to "uname -p" need to change to i686 To match with CoreCLR which uses i686
Diffstat (limited to 'cross')
-rw-r--r--cross/x86/toolchain.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cross/x86/toolchain.cmake b/cross/x86/toolchain.cmake
index 1d68ec5e9b..263867c0b8 100644
--- a/cross/x86/toolchain.cmake
+++ b/cross/x86/toolchain.cmake
@@ -2,7 +2,7 @@ set(CROSS_ROOTFS $ENV{ROOTFS_DIR})
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_VERSION 1)
-set(CMAKE_SYSTEM_PROCESSOR x86)
+set(CMAKE_SYSTEM_PROCESSOR i686)
add_compile_options("-m32")
add_compile_options("--sysroot=${CROSS_ROOTFS}")