-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into eliasj42/windows-ci
- Loading branch information
Showing
76 changed files
with
2,655 additions
and
740 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
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,25 @@ | ||
# Auxiliary Overlay | ||
# | ||
# This project contains some odds and ends needed in order to complete | ||
# assembly of a full SDK. This includes: | ||
# | ||
# * Various redirect files to account for where things live in the tree from | ||
# a user perspective. | ||
# * Symlinks to account for distribution-level layout changes. | ||
# * Other hacks as needed. | ||
|
||
cmake_minimum_required(VERSION 3.25) | ||
|
||
project(therock-aux-overlay) | ||
|
||
if(NOT WIN32) | ||
add_custom_target(symlinks ALL | ||
COMMAND "${CMAKE_COMMAND}" -E create_symlink "lib/llvm" "${CMAKE_CURRENT_BINARY_DIR}/llvm" | ||
) | ||
install(FILES | ||
"${CMAKE_CURRENT_BINARY_DIR}/llvm" | ||
DESTINATION . | ||
) | ||
endif() | ||
|
||
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/overlay/" DESTINATION ".") |
2 changes: 2 additions & 0 deletions
2
base/aux-overlay/overlay/lib/cmake/AMDDeviceLibs/AMDDeviceLibsConfig.cmake
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/AMDDeviceLibs/AMDDeviceLibsConfig.cmake") |
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/clang/ClangConfig.cmake") |
2 changes: 2 additions & 0 deletions
2
base/aux-overlay/overlay/lib/cmake/clang/ClangConfigVersion.cmake
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/clang/ClangConfigVersion.cmake") |
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/lld/LLDConfig.cmake") |
2 changes: 2 additions & 0 deletions
2
base/aux-overlay/overlay/lib/cmake/lld/LLDConfigVersion.cmake
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/lld/LLDConfigVersion.cmake") |
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/llvm/LLVMConfig.cmake") |
2 changes: 2 additions & 0 deletions
2
base/aux-overlay/overlay/lib/cmake/llvm/LLVMConfigVersion.cmake
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,2 @@ | ||
# Redirect to llvm/lib/cmake | ||
include("${CMAKE_CURRENT_LIST_DIR}/../../llvm/lib/cmake/llvm/LLVMConfigVersion.cmake") |
Oops, something went wrong.