diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-26 09:47:22 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-26 09:49:44 +0200 |
commit | a6093ed48cad2217ffe22555d1f1403854418dcb (patch) | |
tree | a86a45938328e2d7889d1cfeb85a26247bf0eb91 /Makefile.native.inc | |
parent | 3ce512ab512339db8172e9f86c885b5ffd098a9c (diff) |
Fixed CI.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Makefile.native.inc')
-rw-r--r-- | Makefile.native.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.native.inc b/Makefile.native.inc index 1e45d36..78b0f1c 100644 --- a/Makefile.native.inc +++ b/Makefile.native.inc @@ -53,8 +53,14 @@ path_exists = \ $(error ERROR: $1 does not exist, run `make -C $(DPP_ROOT) deps` first.)) define CHECK_REQUIRED_PATHS + $(call is_set,$(CC),Makefile argument CC missing) + $(call is_set,$(CXX),Makefile argument CXX missing) + $(call is_set,$(AR),Makefile argument AR missing) + $(call is_set,$(EASTL_STATIC_LIB),Makefile argument EASTL_STATIC_LIB missing) + $(call is_set,$(LIBUSERCRT_STATIC_LIB),Makefile argument LIBUSERCRT_STATIC_LIB missing) $(call path_exists,$(CC)) $(call path_exists,$(CXX)) + $(call path_exists,$(AR)) $(call path_exists,$(EASTL_STATIC_LIB)) $(call path_exists,$(LIBUSERCRT_STATIC_LIB)) endef |