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
7d424c0b
Commit
7d424c0b
authored
Oct 17, 2017
by
Milo Yip
Committed by
GitHub
Oct 17, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1092 from m-tayel/1019-proposed-fix
enable cross compiling by adding option to remove -march/-cpu
parents
d71ad006
7bd9b5a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
5 deletions
+9
-5
CMakeLists.txt
CMakeLists.txt
+9
-5
No files found.
CMakeLists.txt
View file @
7d424c0b
...
...
@@ -35,6 +35,8 @@ option(RAPIDJSON_BUILD_CXX11 "Build rapidjson with C++11 (gcc/clang)" ON)
option
(
RAPIDJSON_BUILD_ASAN
"Build rapidjson with address sanitizer (gcc/clang)"
OFF
)
option
(
RAPIDJSON_BUILD_UBSAN
"Build rapidjson with undefined behavior sanitizer (gcc/clang)"
OFF
)
option
(
RAPIDJSON_ENABLE_INSTRUMENTATION_OPT
"Build rapidjson with -march or -mcpu options"
ON
)
option
(
RAPIDJSON_HAS_STDSTRING
""
OFF
)
if
(
RAPIDJSON_HAS_STDSTRING
)
add_definitions
(
-DRAPIDJSON_HAS_STDSTRING
)
...
...
@@ -50,11 +52,13 @@ if(CCACHE_FOUND)
endif
(
CCACHE_FOUND
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
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
(
${
RAPIDJSON_DISABLE_INSTRUMENTATION_OPT
}
)
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"
)
set
(
EXTRA_CXX_FLAGS -Weffc++ -Wswitch-default -Wfloat-equal -Wconversion -Wsign-conversion
)
...
...
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