Module Name: src
Committed By: pooka
Date: Tue Feb 22 14:02:55 UTC 2011
Modified Files:
src/lib/librumpclient: Makefile
Log Message:
Disable string aliasing for rump_syscalls.c. I can't figure out
how to otherwise make the kernel's register_t coreography to work
with the return value here in a MI fashion.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/librumpclient/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/librumpclient/Makefile
diff -u src/lib/librumpclient/Makefile:1.3 src/lib/librumpclient/Makefile:1.4
--- src/lib/librumpclient/Makefile:1.3 Wed Feb 16 23:45:40 2011
+++ src/lib/librumpclient/Makefile Tue Feb 22 14:02:54 2011
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2011/02/16 23:45:40 pooka Exp $
+# $NetBSD: Makefile,v 1.4 2011/02/22 14:02:54 pooka Exp $
#
.PATH: ${.CURDIR}/../../sys/rump/librump/rumpkern
+NOLINT= # syscalls are evil
LIB= rumpclient
USE_SHLIBDIR= yes
@@ -16,4 +17,6 @@
SRCS= rumpclient.c
SRCS+= rump_syscalls.c
+COPTS.rump_syscalls.c+= -fno-strict-aliasing
+
.include <bsd.lib.mk>