diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-08-24 23:43:18 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-08-24 23:43:18 +0200 |
commit | e988c4dde6c1b88523b1d4e748cbd4f5025b128d (patch) | |
tree | 2ed92895017e9048464552b4420c06c7eab825cf | |
parent | 4d2b05b7d795bfa980065b4f4465444549401c9f (diff) | |
download | mariadb-git-e988c4dde6c1b88523b1d4e748cbd4f5025b128d.tar.gz |
MDEV-336 oqgraph 5.5 crashes in buildbot
force -fno-strict-aliasing for oqgraph
-rw-r--r-- | storage/oqgraph/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/oqgraph/Makefile.am b/storage/oqgraph/Makefile.am index e99e134db02..052c0e9a773 100644 --- a/storage/oqgraph/Makefile.am +++ b/storage/oqgraph/Makefile.am @@ -38,7 +38,7 @@ BOOST_CXXFLAGS = -frtti -fexceptions -fimplicit-templates # it also makes an extra register available in many functions. # It also makes debugging impossible on some machines. # (automatically gets enabled anyway by -O* on some architectures) -BOOST_CXXFLAGS+= -O3 -fstrict-aliasing +BOOST_CXXFLAGS+= -O3 -fno-strict-aliasing BOOST_CXXFLAGS+= -falign-loops if HAVE_FVISIBILITY_INLINES_HIDDEN BOOST_CXXFLAGS+= -fvisibility-inlines-hidden |