diff options
author | Xavier Hernandez <xhernandez@datalab.es> | 2014-07-31 11:51:12 +0200 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-07-31 09:08:33 -0700 |
commit | 9de6d8b555a5202cbf80753f41efa03032edb02b (patch) | |
tree | 8df43054e55a0bff2fece4f155c133e15ae3fd79 /xlators | |
parent | a278c2aecedfbe17e2749109d73b292ca25ff439 (diff) |
ec: Add -msse2 option to avoid fedora/rawhide compilation errors
This solves a compilation error on some compiler versions.
To avoid compilation issues on non-Intel architectures, patch
http://review.gluster.org/8366/ has already been merged. It
disables ec on those architectures.
These modifications are temporary patches until a proper
solution for bug #1125166 is ready.
Change-Id: I74d0b79e84601cc4f86ad08ce0f8102b99a79a68
BUG: 1125168
Signed-off-by: Xavier Hernandez <xhernandez@datalab.es>
Reviewed-on: http://review.gluster.org/8395
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/ec/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/cluster/ec/src/Makefile.am b/xlators/cluster/ec/src/Makefile.am index e2a9330a944..cf88ae44d8e 100644 --- a/xlators/cluster/ec/src/Makefile.am +++ b/xlators/cluster/ec/src/Makefile.am @@ -38,7 +38,7 @@ AM_CPPFLAGS = $(GF_CPPFLAGS) AM_CPPFLAGS += -I$(top_srcdir)/libglusterfs/src AM_CPPFLAGS += -I$(top_srcdir)/xlators/lib/src -AM_CFLAGS = -Wall $(GF_CFLAGS) +AM_CFLAGS = -Wall -msse2 $(GF_CFLAGS) CLEANFILES = |