Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/mit/xorg/lib/gallium Restrict -Wl, -z, defs to x86 an...
details: https://anonhg.NetBSD.org/src/rev/97eb82b80a38
branches: trunk
changeset: 461239:97eb82b80a38
user: martin <martin%NetBSD.org@localhost>
date: Wed Nov 20 06:23:31 2019 +0000
description:
Restrict -Wl,-z,defs to x86 and aarch64 for now to avoid global build
lossage. Suggested by mrg.
diffstat:
external/mit/xorg/lib/gallium/Makefile | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 26c551ab8844 -r 97eb82b80a38 external/mit/xorg/lib/gallium/Makefile
--- a/external/mit/xorg/lib/gallium/Makefile Tue Nov 19 20:07:30 2019 +0000
+++ b/external/mit/xorg/lib/gallium/Makefile Wed Nov 20 06:23:31 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.39 2019/11/19 08:59:18 martin Exp $
+# $NetBSD: Makefile,v 1.40 2019/11/20 06:23:31 martin Exp $
# Link the gallium mega driver.
@@ -1086,7 +1086,10 @@
.endif # ${BUILD_LLVM_PIPE} == 1 || ${BUILD_RADEON} == 1
-LDFLAGS+= -Wl,--version-script=${X11SRCDIR.Mesa}/src/gallium/targets/dri/dri.sym -Wl,-z,defs
+LDFLAGS+= -Wl,--version-script=${X11SRCDIR.Mesa}/src/gallium/targets/dri/dri.sym
+.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" || ${MACHINE_CPU} == "aarch64"
+LDFLAGS+= -Wl,-z,defs
+.endif
## build mesagallium parts
MESA_SRC_MODULES= main math vbo state_tracker program asm_s
Home |
Main Index |
Thread Index |
Old Index