Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
llvm-epi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
Roger Ferrer
llvm-epi
Commits
64c6d42a
Commit
64c6d42a
authored
15 years ago
by
Xerxes Ranby
Browse files
Options
Downloads
Patches
Plain Diff
Implement cmake LLVM_MULTITHREADED gcc atomic builtin checks.
llvm-svn: 76221
parent
46f079e3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
llvm/cmake/config-ix.cmake
+3
-0
3 additions, 0 deletions
llvm/cmake/config-ix.cmake
llvm/cmake/modules/CheckAtomic.cmake
+18
-0
18 additions, 0 deletions
llvm/cmake/modules/CheckAtomic.cmake
llvm/include/llvm/Config/config.h.cmake
+3
-0
3 additions, 0 deletions
llvm/include/llvm/Config/config.h.cmake
with
24 additions
and
0 deletions
llvm/cmake/config-ix.cmake
+
3
−
0
View file @
64c6d42a
...
@@ -76,6 +76,9 @@ if( LLVM_USING_GLIBC )
...
@@ -76,6 +76,9 @@ if( LLVM_USING_GLIBC )
add_llvm_definitions
(
-D_GNU_SOURCE
)
add_llvm_definitions
(
-D_GNU_SOURCE
)
endif
()
endif
()
# Define LLVM_MULTITHREADED if gcc atomic builtins exists.
include
(
CheckAtomic
)
include
(
CheckCXXCompilerFlag
)
include
(
CheckCXXCompilerFlag
)
check_cxx_compiler_flag
(
"-fPIC"
SUPPORTS_FPIC_FLAG
)
check_cxx_compiler_flag
(
"-fPIC"
SUPPORTS_FPIC_FLAG
)
...
...
This diff is collapsed.
Click to expand it.
llvm/cmake/modules/CheckAtomic.cmake
0 → 100644
+
18
−
0
View file @
64c6d42a
# atomic builtins are required for threading support.
INCLUDE
(
CheckCXXSourceCompiles
)
CHECK_CXX_SOURCE_COMPILES
(
"
int main() {
volatile unsigned long val = 1;
__sync_synchronize();
__sync_val_compare_and_swap(&val, 1, 0);
__sync_add_and_fetch(&val, 1);
__sync_sub_and_fetch(&val, 1);
return 0;
}
"
LLVM_MULTITHREADED
)
if
(
NOT LLVM_MULTITHREADED
)
message
(
STATUS
"Warning: LLVM will be built thread-unsafe because atomic builtins are missing"
)
endif
()
This diff is collapsed.
Click to expand it.
llvm/include/llvm/Config/config.h.cmake
+
3
−
0
View file @
64c6d42a
...
@@ -467,6 +467,9 @@
...
@@ -467,6 +467,9 @@
/* Installation directory for man pages */
/* Installation directory for man pages */
#undef LLVM_MANDIR
#undef LLVM_MANDIR
/* Build multithreading support into LLVM */
#cmakedefine LLVM_MULTITHREADED ${LLVM_MULTITHREADED}
/* Define if this is Unixish platform */
/* Define if this is Unixish platform */
#cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX}
#cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX}
...
...
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