diff options
author | lns <matzeton@googlemail.com> | 2022-09-20 12:29:48 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-09-20 17:34:46 +0200 |
commit | 5086b13f9e486e2ed953bf5eccb6851bd6e2b1b4 (patch) | |
tree | 5220d3d044d9b6c4221513f30e413ee4ffaa8fe8 /Makefile.inc | |
parent | 74146a39c666a87d0480125669feb9901e5bc8cb (diff) |
Build DPP with a toolchain tarball generated by mingw-w64-build-ng.
* integrate into CircleCI
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile.inc b/Makefile.inc index 8e65b2e..bb564c5 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -13,13 +13,28 @@ ifeq ($(Q),) CMAKE_Q = VERBOSE=1 endif DPP_ROOT = $(realpath .) +ifeq ($(LOCAL_MINGW64_CC),) LOCAL_MINGW64_BUILD_SCRIPT := $(DPP_ROOT)/mingw-w64-build/mingw-w64-build LOCAL_MINGW64_BUILD_DIR := $(DPP_ROOT)/mingw-w64-sysroot/x86_64 LOCAL_MINGW64_CC := $(LOCAL_MINGW64_BUILD_DIR)/bin/x86_64-w64-mingw32-gcc LOCAL_MINGW64_CXX := $(LOCAL_MINGW64_BUILD_DIR)/bin/x86_64-w64-mingw32-g++ LOCAL_MINGW64_RC := $(LOCAL_MINGW64_BUILD_DIR)/bin/x86_64-w64-mingw32-windres +else +ifeq ($(LOCAL_MINGW64_CXX),) +$(error LOCAL_MINGW64_CC was set, missing required LOCAL_MINGW64_CXX) +endif +ifeq ($(LOCAL_MINGW64_RC),) +$(error LOCAL_MINGW64_CC was set, missing required LOCAL_MINGW64_RC) +endif +endif + +ifeq ($(SIGNTOOL),) SIGNTOOL := osslsigncode +endif + +ifeq ($(SIGNTOOL_PREFIX),) SIGNTOOL_PREFIX := codesign +endif DDK_GLOBAL_DEPS := deps $(LOCAL_MINGW64_BUILD_SCRIPT) $(LOCAL_MINGW64_BUILD_DIR) $(LOCAL_MINGW64_CC) $(LOCAL_MINGW64_CXX) $(LOCAL_MINGW64_RC) |