diff options
author | Guillem Jover <guillem@debian.org> | 2006-02-02 04:40:23 +0000 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2006-02-02 04:40:23 +0000 |
commit | 755c28a7ceed5e1754e697ad33a92cbc6388c697 (patch) | |
tree | 2a12436d48a7a2a0c72f62b450107514947e03b7 /debian | |
parent | 8e32f37752c300a27cffeb28c832982c51f845fa (diff) |
* Build with -fno-strict-aliasing.
Diffstat (limited to 'debian')
-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 |