-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
65c330a
commit 3d5fe15
Showing
414 changed files
with
84,771 additions
and
8,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
if (CMAKE_HOST_SYSTEM_NAME STREQUAL "Linux") | ||
math(EXPR length "${CMAKE_ARGC} - 1") # ${CMAKE_ARGC} - 1 is the exact number of arguments | ||
|
||
foreach (item RANGE 3 ${length}) | ||
File (CHMOD_RECURSE | ||
${CMAKE_ARGV${item}} | ||
FILE_PERMISSIONS OWNER_EXECUTE OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ | ||
) | ||
endforeach() | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
set (CLANG_COMMON_LIBRARIES | ||
clangMetrics | ||
clangTooling | ||
clangFrontend | ||
clangRewriteFrontend | ||
clangSerialization | ||
clangParse | ||
clangSema | ||
clangEdit | ||
clangLex | ||
clangAnalysis | ||
clangRewrite | ||
clangASTMatchers | ||
clangAST | ||
clangDriver | ||
clangBasic | ||
|
||
LLVMMCParser | ||
LLVMMC | ||
LLVMProfileData | ||
LLVMBitReader | ||
LLVMBitstreamReader | ||
LLVMCore | ||
LLVMSupport | ||
LLVMOption | ||
LLVMDemangle | ||
LLVMBinaryFormat | ||
LLVMRemarks | ||
LLVMFrontendOpenMP | ||
) | ||
|
||
if (CMAKE_SYSTEM_NAME STREQUAL Windows) | ||
list (APPEND CLANG_COMMON_LIBRARIES version) | ||
elseif (CMAKE_SYSTEM_NAME STREQUAL Linux) | ||
list (APPEND CLANG_COMMON_LIBRARIES pthread z tinfo dl) | ||
elseif (CMAKE_SYSTEM_NAME STREQUAL Darwin) | ||
list (APPEND CLANG_COMMON_LIBRARIES pthread z dl curses) | ||
endif () |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.