diff options
| author | Amar Tumballi <amar@gluster.com> | 2010-09-20 02:29:14 +0000 | 
|---|---|---|
| committer | Vijay Bellur <vijay@dev.gluster.com> | 2010-09-20 08:13:17 -0700 | 
| commit | abbfbe2461511183a983f5c97f08f2653f40d47b (patch) | |
| tree | 71dc606c7b94f481f5363acfc0588b7646ab489d /configure.ac | |
| parent | 5c297be9612f76dad6f970092fb6762b4ee4844a (diff) | |
build glusterfs with '-O0' flag by default
Signed-off-by: Amar Tumballi <amar@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1599 (can we build glusterfs with -O0 -g by default)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1599
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 07ee721502b..8bfea43c944 100644 --- a/configure.ac +++ b/configure.ac @@ -353,14 +353,14 @@ case $host_os in       linux*)       dnl	GF_LINUX_HOST_OS=1          GF_HOST_OS="GF_LINUX_HOST_OS" -	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS}" +	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -O0"  	GF_GLUSTERFS_CFLAGS="${GF_CFLAGS}"  	GF_LDADD="${ARGP_STANDALONE_LDADD}"  	GF_FUSE_CFLAGS="-DFUSERMOUNT_DIR=\\\"\$(bindir)\\\""  	;;       solaris*)          GF_HOST_OS="GF_SOLARIS_HOST_OS" -	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS" +	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O0"  	GF_LDFLAGS=""  	GF_GLUSTERFS_CFLAGS="${GF_CFLAGS}"  	GF_LDADD="${ARGP_STANDALONE_LDADD}" @@ -370,7 +370,7 @@ case $host_os in  	;;       *bsd*)          GF_HOST_OS="GF_BSD_HOST_OS" -	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS}" +	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -O0"  	GF_GLUSTERFS_CFLAGS="${GF_CFLAGS}"  	GF_LDADD="${ARGP_STANDALONE_LDADD}"  	if test "x$ac_cv_header_execinfo_h" = "xyes"; then @@ -381,8 +381,8 @@ case $host_os in       darwin*)          GF_HOST_OS="GF_DARWIN_HOST_OS"  	LIBTOOL=glibtool -	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D__DARWIN_64_BIT_INO_T -bundle -undefined suppress -flat_namespace -D_XOPEN_SOURCE" -	GF_GLUSTERFS_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D__DARWIN_64_BIT_INO_T -undefined suppress -flat_namespace" +	GF_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D__DARWIN_64_BIT_INO_T -bundle -undefined suppress -flat_namespace -D_XOPEN_SOURCE -O0" +	GF_GLUSTERFS_CFLAGS="${ARGP_STANDALONE_CPPFLAGS} -D__DARWIN_64_BIT_INO_T -undefined suppress -flat_namespace -O0"  	GF_LDADD="${ARGP_STANDALONE_LDADD}"  	GF_FUSE_CFLAGS="-I\$(CONTRIBDIR)/macfuse"  	;;  | 
