We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d97cd5d commit b029543Copy full SHA for b029543
release.mk
@@ -202,9 +202,14 @@ endef
202
# Build flags common to all toolchains
203
#
204
205
-BUILDALLFLAGS := --disable-werror --strip --rel-rpaths --no-auto-pull \
+BUILDALLFLAGS := --disable-werror --strip --no-auto-pull \
206
--no-auto-checkout --elf32-strip-target-libs
207
208
+# Relative paths require patchelf, not present on macOS.
209
+ifneq ($(HOST),macos)
210
+BUILDALLFLAGS += --rel-rpaths
211
+endif
212
+
213
EXTRA_CONFIG_FLAGS += --with-python=no
214
ifeq ($(CONFIG_STATIC_TOOLCHAIN),y)
215
EXTRA_CONFIG_FLAGS += LDFLAGS=-static
0 commit comments