Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CMake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Christophe
CMake
Commits
93b25f0b
Commit
93b25f0b
authored
3 years ago
by
Brad King
Browse files
Options
Downloads
Plain Diff
Merge branch 'check_cxx_compiler_flag_no_normal_variable' into release-3.19
Merge-request: !6318
parents
c9b27dac
018d300c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Internal/CheckCompilerFlag.cmake
+0
-1
0 additions, 1 deletion
Modules/Internal/CheckCompilerFlag.cmake
Tests/TryCompile/CMakeLists.txt
+10
-0
10 additions, 0 deletions
Tests/TryCompile/CMakeLists.txt
with
10 additions
and
1 deletion
Modules/Internal/CheckCompilerFlag.cmake
+
0
−
1
View file @
93b25f0b
...
...
@@ -73,7 +73,6 @@ int main(void) { return 0; }]=])
foreach
(
v IN LISTS _locale_vars
)
set
(
ENV{
${
v
}
}
${
_locale_vars_saved_
${
v
}}
)
endforeach
()
set
(
${
_var
}
"
${${
_var
}}
"
PARENT_SCOPE
)
endfunction
()
cmake_policy
(
POP
)
This diff is collapsed.
Click to expand it.
Tests/TryCompile/CMakeLists.txt
+
10
−
0
View file @
93b25f0b
...
...
@@ -305,11 +305,21 @@ unset(C_BOGUS_FLAG CACHE)
include
(
CheckCCompilerFlag
)
CHECK_C_COMPILER_FLAG
(
${
C_DD
}
-_this_is_not_a_flag_ C_BOGUS_FLAG
)
TEST_FAIL
(
C_BOGUS_FLAG
"CHECK_C_COMPILER_FLAG() succeeded, but should have failed"
)
unset
(
C_BOGUS_FLAG CACHE
)
if
(
DEFINED C_BOGUS_FLAG
)
# Verify that CHECK_C_COMPILER_FLAG didn't construct a normal variable
message
(
SEND_ERROR
"CHECK_C_COMPILER_FLAG shouldn't construct C_BOGUS_FLAG as a normal variable"
)
endif
()
unset
(
CXX_BOGUS_FLAG CACHE
)
include
(
CheckCXXCompilerFlag
)
CHECK_CXX_COMPILER_FLAG
(
${
CXX_DD
}
-_this_is_not_a_flag_ CXX_BOGUS_FLAG
)
TEST_FAIL
(
CXX_BOGUS_FLAG
"CHECK_CXX_COMPILER_FLAG() succeeded, but should have failed"
)
unset
(
CXX_BOGUS_FLAG CACHE
)
if
(
DEFINED CXX_BOGUS_FLAG
)
# Verify that CHECK_C_COMPILER_FLAG didn't construct a normal variable
message
(
SEND_ERROR
"CHECK_CXX_COMPILER_FLAG shouldn't construct CXX_BOGUS_FLAG as a normal variable"
)
endif
()
if
(
CMAKE_C_COMPILER_ID STREQUAL
"GNU"
)
unset
(
C_STRICT_PROTOTYPES CACHE
)
...
...
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