File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,17 @@ install: $(addprefix install-, $(DEP_LIBS))
178178cleanall : $(addprefix clean-, $(DEP_LIBS ) )
179179distcleanall : $(addprefix distclean-, $(DEP_LIBS ) )
180180 rm -rf $(build_prefix )
181- getall : get-llvm get-libuv get-pcre get-openlibm get-dsfmt get-openblas get-lapack get-suitesparse get-unwind get-osxunwind get-gmp get-mpfr get-patchelf get-utf8proc get-objconv get-mbedtls get-libssh2 get-curl get-libgit2 get-libwhich
181+ getall : get-llvm get-libuv get-pcre get-openlibm get-dsfmt get-openblas get-lapack get-suitesparse get-unwind get-gmp get-mpfr get-patchelf get-utf8proc get-objconv get-mbedtls get-libssh2 get-curl get-libgit2 get-libwhich
182+
183+ # If we're building for MacOS, no matter what, `getall` should include `osxunwind`
184+ ifeq ($(OS ) ,Darwin)
185+ getall : get-osxunwind
186+ endif
187+
188+ # Same if we're building a purely-source archive, always include `osxunwind`
189+ ifeq ($(USE_BINARYBUILDER_OSXUNWIND ) ,0)
190+ getall : get-osxunwind
191+ endif
182192
183193include $(SRCDIR ) /llvm.mk
184194include $(SRCDIR ) /libuv.mk
You can’t perform that action at this time.
0 commit comments