diff options
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index fe13367..5078966 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,7 @@ gnumach (1:20060201-1) UNRELEASED; urgency=low glue code. - debian/patches/61_vm_resident-zoned.patch: New file. Thanks to Gianluca Guida <glguida@gmail.com>. + * Build with -fno-strict-aliasing. -- Guillem Jover <guillem@debian.org> Wed, 1 Feb 2006 23:21:59 +0200 diff --git a/debian/rules b/debian/rules index 0df0242..9e0c21e 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ pkg_dev := gnumach-dev DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) -CFLAGS = -Wall -g -pipe +CFLAGS = -Wall -g -pipe -fno-strict-aliasing ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 |