Module Name:    src
Committed By:   pooka
Date:           Thu Nov 22 21:21:22 UTC 2012

Modified Files:
        src/sys/rump: Makefile.rump

Log Message:
Pass linker script with -Wl,-T to avoid clang incompating itself out
without flagging an error.


To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 src/sys/rump/Makefile.rump

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/Makefile.rump
diff -u src/sys/rump/Makefile.rump:1.67 src/sys/rump/Makefile.rump:1.68
--- src/sys/rump/Makefile.rump:1.67	Wed Nov 21 17:53:10 2012
+++ src/sys/rump/Makefile.rump	Thu Nov 22 21:21:21 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rump,v 1.67 2012/11/21 17:53:10 pooka Exp $
+#	$NetBSD: Makefile.rump,v 1.68 2012/11/22 21:21:21 pooka Exp $
 #
 
 WARNS?=		3	# XXX: src/sys won't compile with -Wsign-compare yet
@@ -37,7 +37,7 @@ CPPFLAGS+=	-I${RUMPTOP}/../arch
 CPPFLAGS+=	-I${RUMPTOP}/..
 .endif
 
-LDFLAGS+=	-T ${RUMPTOP}/ldscript.rump
+LDFLAGS+=	-Wl,-T ${RUMPTOP}/ldscript.rump
 
 RUMP_DIAGNOSTIC?=yes
 .if ${RUMP_DIAGNOSTIC} == "yes"

Reply via email to