[2.2 BRANCH] No strict aliasing

Dr Andrew John Hughes ahughes at redhat.com
Wed May 16 03:40:47 PDT 2012


The attached patch turns off strict aliasing when building
ExtensionSubtables.cpp which otherwise produces the following
warnings:

../../../src/share/native/sun/font/layout/ExtensionSubtables.cpp:57:31: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]

Ok for the 2.2 branch?  This is already in HEAD.
-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

PGP Key: 248BDC07 (https://keys.indymedia.org/)
Fingerprint = EC5A 1F5E C0AD 1D15 8F1F  8F91 3B96 A578 248B DC07
-------------- next part --------------
# HG changeset patch
# User andrew
# Date 1336136728 -3600
# Node ID fd327c7e74dab7f24448aa21691c75411eaf5626
# Parent  5f96377cf55e0233ef502e77c29e5510ea8c5a4e
Turn off strict aliasing for ExtensionSubtables.cpp

diff --git a/make/sun/font/Makefile b/make/sun/font/Makefile
--- a/make/sun/font/Makefile
+++ b/make/sun/font/Makefile
@@ -90,6 +90,11 @@
 
 endif # PLATFORM
 
+# Turn off aliasing with GCC for ExtensionSubtables.cpp
+ifeq ($(PLATFORM), linux)
+  OTHER_CXXFLAGS += -fno-strict-aliasing
+endif
+
 #In the non-OpenJDK mode we need to build T2K
 ifndef OPENJDK
 t2k:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120516/6755607c/attachment.bin 


More information about the distro-pkg-dev mailing list