mirror of
https://github.com/italicsjenga/portability.git
synced 2024-11-22 15:01:31 +11:00
122 lines
3.8 KiB
Makefile
122 lines
3.8 KiB
Makefile
VULKAN_DIR=modules/vulkan-docs/src
|
|
CTS_DIR=../VK-GL-CTS
|
|
CHERRY_DIR=../cherry
|
|
BINDING=target/vulkan.rs
|
|
NATIVE_DIR=target/native
|
|
TARGET=$(NATIVE_DIR)/test
|
|
OBJECTS=$(NATIVE_DIR)/test.o $(NATIVE_DIR)/window.o
|
|
LIB_EXTENSION=
|
|
TEST_LIST=$(CURDIR)/conformance/deqp.txt
|
|
TEST_LIST_SOURCE=$(CTS_DIR)/external/vulkancts/mustpass/1.0.2/vk-default.txt
|
|
DEQP_DIR=$(CTS_DIR)/build/external/vulkancts/modules/vulkan/
|
|
DEQP=cd $(DEQP_DIR) && RUST_LOG=debug LD_LIBRARY_PATH=$(FULL_LIBRARY_PATH) ./deqp-vk
|
|
DOTA_DIR=../dota2/bin/osx64
|
|
DOTA_EXE=$(DOTA_DIR)/dota2.app/Contents/MacOS/dota2
|
|
|
|
RUST_BACKTRACE:=1
|
|
BACKEND:=gl
|
|
DEBUGGER=rust-gdb --args
|
|
|
|
CC=g++
|
|
CFLAGS=-std=c++11 -ggdb -O0 -I$(VULKAN_DIR)
|
|
DEPS=
|
|
LDFLAGS=
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
LDFLAGS=
|
|
BACKEND=dx12
|
|
LIB_EXTENSION=dll
|
|
else
|
|
UNAME_S:=$(shell uname -s)
|
|
ifeq ($(UNAME_S),Linux)
|
|
LDFLAGS=-lpthread -ldl -lm -lX11 -lxcb
|
|
BACKEND=vulkan
|
|
LIB_EXTENSION=so
|
|
endif
|
|
ifeq ($(UNAME_S),Darwin)
|
|
LDFLAGS=-lpthread -ldl -lm
|
|
BACKEND=metal
|
|
DEBUGGER=rust-lldb --
|
|
LIB_EXTENSION=dylib
|
|
endif
|
|
endif
|
|
|
|
FULL_LIBRARY_PATH=$(CURDIR)/target/debug
|
|
LIBRARY=target/debug/libportability.$(LIB_EXTENSION)
|
|
LIBRARY_FAST=target/release/libportability.$(LIB_EXTENSION)
|
|
|
|
.PHONY: all rebuild debug release debug-version release-version binding run cts clean cherry dota-debug dota-release
|
|
|
|
all: $(TARGET)
|
|
|
|
rebuild:
|
|
cargo build --manifest-path libportability/Cargo.toml --features $(BACKEND)
|
|
|
|
debug:
|
|
cargo build --manifest-path libportability/Cargo.toml --features $(BACKEND),debug
|
|
|
|
release: $(LIBRARY_FAST)
|
|
|
|
debug-version:
|
|
cargo rustc --manifest-path libportability/Cargo.toml --features $(BACKEND),portability-gfx/env_logger -- -Clink-arg="-current_version 1.0.0" -Clink-arg="-compatibility_version 1.0.0"
|
|
|
|
release-version:
|
|
cargo rustc --release --manifest-path libportability/Cargo.toml --features $(BACKEND) -- -Clink-arg="-current_version 1.0.0" -Clink-arg="-compatibility_version 1.0.0"
|
|
|
|
dota-debug: debug-version
|
|
DYLD_LIBRARY_PATH=`pwd`/target/debug:`pwd`/$(DOTA_DIR) $(DOTA_EXE)
|
|
|
|
dota-release: release-version
|
|
DYLD_LIBRARY_PATH=`pwd`/target/release:`pwd`/$(DOTA_DIR) $(DOTA_EXE)
|
|
|
|
binding: $(BINDING)
|
|
|
|
$(BINDING): $(VULKAN_DIR)/vulkan/*.h
|
|
bindgen --no-layout-tests --rustfmt-bindings $(VULKAN_DIR)/vulkan/vulkan.h -o $(BINDING)
|
|
|
|
$(LIBRARY): libportability*/src/*.rs libportability*/Cargo.toml Cargo.lock
|
|
cargo build --manifest-path libportability/Cargo.toml --features $(BACKEND)
|
|
cargo build --manifest-path libportability-icd/Cargo.toml --features $(BACKEND)
|
|
mkdir -p target/native
|
|
|
|
$(LIBRARY_FAST): libportability*/src/*.rs libportability*/Cargo.toml Cargo.lock
|
|
cargo build --release --manifest-path libportability/Cargo.toml --features $(BACKEND)
|
|
cargo build --release --manifest-path libportability-icd/Cargo.toml --features $(BACKEND)
|
|
|
|
$(NATIVE_DIR)/%.o: native/%.cpp $(DEPS) Makefile
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
$(TARGET): $(LIBRARY) $(OBJECTS) Makefile
|
|
$(CC) -o $(TARGET) $(OBJECTS) $(LIBRARY) $(LDFLAGS)
|
|
|
|
run: $(TARGET)
|
|
$(TARGET)
|
|
|
|
$(TEST_LIST): $(TEST_LIST_SOURCE)
|
|
cat $(TEST_LIST_SOURCE) | grep -v -e ".event" -e "query" >$(TEST_LIST)
|
|
|
|
ifdef pick
|
|
cts:
|
|
cargo build --manifest-path libportability/Cargo.toml --features $(BACKEND),portability-gfx/env_logger
|
|
($(DEQP) -n $(pick))
|
|
else
|
|
ifdef debug
|
|
cts: $(LIBRARY)
|
|
#(cd $(DEQP_DIR) && LD_LIBRARY_PATH=$(FULL_LIBRARY_PATH) $(DEBUGGER) ./deqp-vk -n $(debug))
|
|
LD_LIBRARY_PATH=$(FULL_LIBRARY_PATH) $(DEBUGGER) $(DEQP_DIR)/deqp-vk -n $(debug)
|
|
else
|
|
cts: $(LIBRARY) $(TEST_LIST)
|
|
($(DEQP) --deqp-caselist-file=$(TEST_LIST))
|
|
python $(CTS_DIR)/scripts/log/log_to_xml.py TestResults.qpa conformance/last.xml
|
|
mv TestResults.qpa conformance/last.qpa
|
|
firefox conformance/last.xml
|
|
endif #debug
|
|
endif #pick
|
|
|
|
clean:
|
|
rm -f $(OBJECTS) $(TARGET) $(BINDING)
|
|
cargo clean
|
|
|
|
cherry: $(TARGET)
|
|
cd $(CHERRY_DIR) && rm -f Cherry.db && RUST_LOG=warn LD_LIBRARY_PATH=$(FULL_LIBRARY_PATH) go run server.go
|