Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,032 changes: 521 additions & 511 deletions llvm/CMakeLists.txt

Large diffs are not rendered by default.

625 changes: 319 additions & 306 deletions llvm/cmake/config-ix.cmake

Large diffs are not rendered by default.

2,153 changes: 1,093 additions & 1,060 deletions llvm/cmake/modules/AddLLVM.cmake

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions llvm/cmake/modules/AddLLVMDefinitions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

# Beware that there is no implementation of remove_llvm_definitions.

macro(add_llvm_definitions)
# We don't want no semicolons on LLVM_DEFINITIONS:
foreach(arg ${ARGN})
if(DEFINED LLVM_DEFINITIONS)
set(LLVM_DEFINITIONS "${LLVM_DEFINITIONS} ${arg}")
else()
set(LLVM_DEFINITIONS ${arg})
endif()
endforeach(arg)
add_definitions( ${ARGN} )
endmacro(add_llvm_definitions)
# macro(add_llvm_definitions)
# # We don't want no semicolons on LLVM_DEFINITIONS:
# foreach(arg ${ARGN})
# if(DEFINED LLVM_DEFINITIONS)
# set(LLVM_DEFINITIONS "${LLVM_DEFINITIONS} ${arg}")
# else()
# set(LLVM_DEFINITIONS ${arg})
# endif()
# endforeach(arg)
# add_definitions( ${ARGN} )
# endmacro(add_llvm_definitions)
Loading