mirror of
https://github.com/italicsjenga/spirv-to-dxil-rs.git
synced 2024-12-23 03:31:29 +11:00
build: go back to submodule method but clone a minimal subset
This commit is contained in:
parent
701ff2f7a2
commit
0f4c1ba163
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -0,0 +1,3 @@
|
|||
[submodule "spirv-to-dxil-sys/native/mesa"]
|
||||
path = spirv-to-dxil-sys/native/mesa
|
||||
url = https://gitlab.freedesktop.org/mesa/mesa
|
|
@ -14,7 +14,10 @@ spirv-to-dxil-rs builds a copy of spirv-to-dxil statically from Mesa. Many of th
|
|||
|
||||
Lex and Yacc are not required. Additionally, [CMake 3.6](https://cmake.org/) or later is required to run the build script.
|
||||
|
||||
A script to clone a minimal subset of Mesa required to build spirv-to-dxil has been provided.
|
||||
|
||||
```bash
|
||||
$ ./clone-mesa.sh
|
||||
$ cargo build
|
||||
```
|
||||
|
||||
|
|
9
clone_mesa.sh
Normal file
9
clone_mesa.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
git clone --filter=blob:none --no-checkout https://gitlab.freedesktop.org/mesa/mesa
|
||||
git submodule add https://gitlab.freedesktop.org/mesa/mesa spirv-to-dxil-sys/native/mesa
|
||||
git submodule absorbgitdirs
|
||||
|
||||
git -C spirv-to-dxil-sys/native/mesa config core.sparseCheckout true
|
||||
git -C spirv-to-dxil-sys/native/mesa config core.symlinks false
|
||||
|
||||
cp ./spirv-to-dxil-sys/native/mesa-sparse-checkout ./.git/modules/spirv-to-dxil-sys/native/mesa/info
|
||||
git submodule update --init --force --checkout spirv-to-dxil-sys/native/mesa
|
|
@ -1,8 +1,6 @@
|
|||
use cmake::Config;
|
||||
use std::{env, fs::File, path::{Path, PathBuf}};
|
||||
|
||||
const MESA_HASH: &str = "13b25a6114fc226b1aa06125fa56bc5fffd900d4";
|
||||
|
||||
fn main() {
|
||||
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
||||
if env::var("DOCS_RS").is_ok() {
|
||||
|
@ -12,7 +10,6 @@ fn main() {
|
|||
}
|
||||
|
||||
let cmake_dst = Config::new("native")
|
||||
.define("MESA_HASH", MESA_HASH)
|
||||
.build_target("mesa")
|
||||
.build();
|
||||
|
||||
|
|
|
@ -46,11 +46,7 @@ set(MESA_EXTRA_FLAGS
|
|||
|
||||
|
||||
ExternalProject_Add(mesa
|
||||
GIT_REPOSITORY https://gitlab.freedesktop.org/mesa/mesa
|
||||
GIT_TAG ${MESA_HASH}
|
||||
GIT_SHALLOW true
|
||||
GIT_PROGRESS true
|
||||
GIT_CONFIG core.symlinks=false
|
||||
URL file://${CMAKE_CURRENT_LIST_DIR}/mesa
|
||||
PREFIX ${CMAKE_BINARY_DIR}/mesa
|
||||
CONFIGURE_COMMAND cd ${CMAKE_BINARY_DIR}/mesa/src/mesa && meson setup ${CMAKE_BINARY_DIR}/mesa/src/mesa-build ${MESA_EXTRA_FLAGS}
|
||||
BUILD_COMMAND cd ${CMAKE_BINARY_DIR}/mesa/src/mesa-build && ninja src/vulkan/util/libvulkan_util.a && ninja src/microsoft/spirv_to_dxil/libspirv_to_dxil.a
|
||||
|
|
1
spirv-to-dxil-sys/native/mesa
Submodule
1
spirv-to-dxil-sys/native/mesa
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 8f928a95e167423320af711b21270a8212f34628
|
21
spirv-to-dxil-sys/native/mesa-sparse-checkout
Normal file
21
spirv-to-dxil-sys/native/mesa-sparse-checkout
Normal file
|
@ -0,0 +1,21 @@
|
|||
/meson.build
|
||||
/src/meson.build
|
||||
/bin
|
||||
/include
|
||||
/src/loader
|
||||
/src/android_stub
|
||||
/src/compiler
|
||||
/src/util
|
||||
/src/vulkan
|
||||
/src/microsoft
|
||||
/src/gallium
|
||||
/src/virtio
|
||||
/src/amd/common
|
||||
/src/tool
|
||||
/src/mesa
|
||||
/src/gtest
|
||||
/src/getopt
|
||||
/src/mapi
|
||||
/src/c11
|
||||
/VERSION
|
||||
/meson_options.txt
|
Loading…
Reference in a new issue