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
7bd9b5a1
Commit
7bd9b5a1
authored
Oct 16, 2017
by
M.Tayel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable cross compiling by adding option to remove -march/-cpu
parent
d71ad006
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
CMakeLists.txt
CMakeLists.txt
+4
-0
No files found.
CMakeLists.txt
View file @
7bd9b5a1
...
...
@@ -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,12 +52,14 @@ if(CCACHE_FOUND)
endif
(
CCACHE_FOUND
)
if
(
"
${
CMAKE_CXX_COMPILER_ID
}
"
STREQUAL
"GNU"
)
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
)
if
(
RAPIDJSON_BUILD_CXX11
)
...
...
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