Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
4c9a28a2
Commit
4c9a28a2
authored
Nov 24, 2017
by
Rolf Eike Beer
Committed by
Rolf Eike Beer
Nov 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMake: do not pass -march=native or -mcpu=native when crosscompiling
parent
4e1c7363
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
CMakeLists.txt
CMakeLists.txt
+8
-6
No files found.
CMakeLists.txt
View file @
4c9a28a2
...
...
@@ -52,7 +52,7 @@ if(CCACHE_FOUND)
endif
(
CCACHE_FOUND
)
if
(
CMAKE_CXX_COMPILER_ID STREQUAL
"GNU"
)
if
(
RAPIDJSON_ENABLE_INSTRUMENTATION_OPT
)
if
(
RAPIDJSON_ENABLE_INSTRUMENTATION_OPT
AND NOT CMAKE_CROSSCOMPILING
)
if
(
CMAKE_SYSTEM_PROCESSOR STREQUAL
"powerpc"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64le"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-mcpu=native"
)
else
()
...
...
@@ -84,11 +84,13 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
endif
()
endif
()
elseif
(
CMAKE_CXX_COMPILER_ID MATCHES
"Clang"
)
if
(
CMAKE_SYSTEM_PROCESSOR STREQUAL
"powerpc"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64le"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-mcpu=native"
)
else
()
#FIXME: x86 is -march=native, but doesn't mean every arch is this option. To keep original project's compatibility, I leave this except POWER.
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-march=native"
)
if
(
NOT CMAKE_CROSSCOMPILING
)
if
(
CMAKE_SYSTEM_PROCESSOR STREQUAL
"powerpc"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64"
OR CMAKE_SYSTEM_PROCESSOR STREQUAL
"ppc64le"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-mcpu=native"
)
else
()
#FIXME: x86 is -march=native, but doesn't mean every arch is this option. To keep original project's compatibility, I leave this except POWER.
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-march=native"
)
endif
()
endif
()
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Wall -Wextra -Werror -Wno-missing-field-initializers"
)
set
(
EXTRA_CXX_FLAGS -Weffc++ -Wswitch-default -Wfloat-equal -Wconversion -Wimplicit-fallthrough
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment