-
-
Notifications
You must be signed in to change notification settings - Fork 435
More improvements to native library builds #2143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
6b873ae
Native: Also include *.json files in PRs (e.g. vk_swiftshader_icd.json).
alexrp bfaaf26
Native/SwiftShader: Update submodule to 764410d.
alexrp 347617b
Native/SwiftShader: Build for win-arm64.
alexrp af4eab3
Native/SwiftShader: Update packaging paths in Silk.NET.Vulkan.SwiftSh…
alexrp c8b9a3f
Native/Vulkan Loader: Build for win-arm64.
alexrp e00e00b
Native/SwiftShader: Expand on a comment in the NUKE build script.
alexrp 692fad3
Native: Use absolute tool paths in aarch64-w64-mingw32.cmake.
alexrp 0778b16
Native: Re-run CMake-based workflows when build/cmake/* changes are p…
alexrp 6b2f487
Native/Vulkan Loader: Remove llvm-mingw archive after extraction.
alexrp 7410392
Native/Vulkan Loader: Pass extra glob path to the win-arm64 binary.
alexrp 2ec77fe
New binaries for SwiftShader on Darwin 23.4.0 Darwin Kernel Version 2…
dotnet-bot e75074b
Native/Vulkan Loader: Update submodule to v1.3.281.
alexrp 980ba80
Native/Vulkan-Loader: Update submodule to 6d9e995.
alexrp 2855971
Native/Vulkan Loader: Fix path to vulkan-1.dll for win-arm64.
alexrp bce15b0
New binaries for SwiftShader on Microsoft Windows 10.0.20348
dotnet-bot b65c93c
Merge branch 'alexrp/vulkan-loader-swiftshader-win-arm64' into ci/ale…
dotnet-bot c3fe8ac
Native/Vulkan Loader: Fix path to vulkan-1.dll for win-arm64, take 2.
alexrp 9b1ad19
New binaries for Vulkan Loader on Darwin 23.4.0 Darwin Kernel Version…
dotnet-bot 3c3368d
New binaries for Vulkan Loader on Linux 6.5.0-1018-azure #19~22.04.2-…
dotnet-bot 8df436f
Merge branch 'alexrp/vulkan-loader-swiftshader-win-arm64' into ci/ale…
dotnet-bot 6083213
New binaries for Vulkan Loader on Microsoft Windows 10.0.20348
dotnet-bot 4ec470d
Merge branch 'alexrp/vulkan-loader-swiftshader-win-arm64' into ci/ale…
dotnet-bot 09816d2
Merge pull request #2148 from dotnet/ci/alexrp/vulkan-loader-swiftsha…
alexrp 1a254b2
New binaries for SwiftShader on Linux 6.5.0-1018-azure #19~22.04.2-Ub…
dotnet-bot ad52006
Merge branch 'alexrp/vulkan-loader-swiftshader-win-arm64' into ci/ale…
dotnet-bot 3a4abda
Merge pull request #2146 from dotnet/ci/alexrp/vulkan-loader-swiftsha…
alexrp 2d0819b
Native: Simplify `git add` glob for changed native binaries.
alexrp b0a5321
Native: Simplify NuGet packaging projects.
alexrp 39b6102
Native: Set CMAKE_ASM_COMPILER in all toolchain files.
alexrp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,12 @@ | ||
set(CMAKE_SYSTEM_NAME Windows) | ||
set(CMAKE_SYSTEM_PROCESSOR aarch64) | ||
set(CMAKE_ASM_COMPILER "/opt/llvm-mingw-msvcrt/bin/aarch64-w64-mingw32-as") | ||
set(CMAKE_C_COMPILER "/opt/llvm-mingw-msvcrt/bin/aarch64-w64-mingw32-gcc") | ||
set(CMAKE_CXX_COMPILER "/opt/llvm-mingw-msvcrt/bin/aarch64-w64-mingw32-g++") | ||
set(CMAKE_RC_COMPILER "/opt/llvm-mingw-msvcrt/bin/aarch64-w64-mingw32-windres") | ||
set(CMAKE_LINKER "/opt/llvm-mingw-msvcrt/bin/aarch64-w64-mingw32-ld") | ||
set(CMAKE_FIND_ROOT_PATH "/opt/llvm-mingw-msvcrt/aarch64-w64-mingw32") | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM BOTH) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) | ||
set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Submodule SwiftShader
updated
29 files
Submodule Vulkan-Loader
updated
16 files
+3 −0 | .github/workflows/build.yml | |
+3 −3 | .github/workflows/codeql.yml | |
+0 −5 | BUILD.md | |
+8 −1 | CMakeLists.txt | |
+29 −5 | loader/CMakeLists.txt | |
+2 −2 | loader/loader.rc | |
+665 −0 | scripts/CodeCoverage.cmake | |
+3 −3 | scripts/known_good.json | |
+4 −3 | scripts/update_deps.py | |
+4 −0 | tests/CMakeLists.txt | |
+155 −0 | tests/framework/test_util.h | |
+1 −1 | tests/loader_alloc_callback_tests.cpp | |
+14 −22 | tests/loader_get_proc_addr_tests.cpp | |
+98 −457 | tests/loader_phys_dev_inst_ext_tests.cpp | |
+65 −129 | tests/loader_regression_tests.cpp | |
+3 −3 | tests/loader_unknown_ext_tests.cpp |
This file contains hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.