Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nptool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
np
nptool
Commits
9dc702fb
Commit
9dc702fb
authored
9 years ago
by
adrien-matta
Browse files
Options
Downloads
Patches
Plain Diff
* Trying to fix error when disabling C++11 support
parent
cd5a5880
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
NPLib/CMakeLists.txt
+8
-7
8 additions, 7 deletions
NPLib/CMakeLists.txt
with
8 additions
and
7 deletions
NPLib/CMakeLists.txt
+
8
−
7
View file @
9dc702fb
...
@@ -29,18 +29,24 @@ set(CMAKE_INSTALL_MESSAGE LAZY)
...
@@ -29,18 +29,24 @@ set(CMAKE_INSTALL_MESSAGE LAZY)
# look for Root
# look for Root
include
(
"ressources/CMake/Root.cmake"
)
include
(
"ressources/CMake/Root.cmake"
)
# Check for user disabling of c++11 support
string
(
COMPARE EQUAL
"
${
CPP11
}
"
"no"
nocpp11
)
if
(
nocpp11
)
message
(
" -> C++11 support disable"
)
endif
()
# If the compiler is Clang, silence the unrecognised flags
# If the compiler is Clang, silence the unrecognised flags
if
(
${
CMAKE_CXX_COMPILER_ID
}
MATCHES
".*Clang.*"
)
if
(
${
CMAKE_CXX_COMPILER_ID
}
MATCHES
".*Clang.*"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Qunused-arguments -fcolor-diagnostics"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-Qunused-arguments -fcolor-diagnostics"
)
if
(
UNIX AND NOT APPLE
)
if
(
UNIX AND NOT APPLE
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-stdlib=libc++"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-stdlib=libc++"
)
endif
()
endif
()
if
(
APPLE AND CLANG_VERSION_MAJOR VERSION_LESS 5
)
if
(
APPLE AND CLANG_VERSION_MAJOR VERSION_LESS 5
AND NOT nocpp11
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-stdlib=libc++"
)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-stdlib=libc++"
)
endif
()
endif
()
endif
()
endif
()
# Adjust the compiler language flag
# Adjust the compiler language flag
set
(
NOCPPFLAGS true
)
set
(
NOCPPFLAGS true
)
if
(
${
CMAKE_CXX_FLAGS
}
MATCHES
".*std=.*11"
)
if
(
${
CMAKE_CXX_FLAGS
}
MATCHES
".*std=.*11"
)
...
@@ -49,11 +55,6 @@ elseif(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*0x")
...
@@ -49,11 +55,6 @@ elseif(${CMAKE_CXX_FLAGS} MATCHES ".*std=.*0x")
set
(
NOCPPFLAGS false
)
set
(
NOCPPFLAGS false
)
endif
()
endif
()
string
(
COMPARE EQUAL
"
${
CPP11
}
"
"no"
nocpp11
)
if
(
nocpp11
)
message
(
" -> C++11 support disable"
)
endif
()
if
(
NOCPPFLAGS
)
if
(
NOCPPFLAGS
)
CHECK_CXX_COMPILER_FLAG
(
"-std=c++11"
COMPILER_SUPPORTS_CXX11
)
CHECK_CXX_COMPILER_FLAG
(
"-std=c++11"
COMPILER_SUPPORTS_CXX11
)
if
(
COMPILER_SUPPORTS_CXX11 AND NOT nocpp11
)
if
(
COMPILER_SUPPORTS_CXX11 AND NOT nocpp11
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment