[svn-r3148] Purpose:

Bug fix
Description:
    TFLOPS was configured to use '-g' flag even when --enable-production
    option was used.  It was because configure hard set CFLAGS to '-g'
    if it is a valid C compiler option and if $CFLAGS is not set yet.
    This is not noticed in other platforms because the config/* files
    they all set CFLAGS in one form or another.
Solution:
    This is a bug in configure but it is risky to change it so close
    to code release.  Instead, just set CFLAGS in this file to bypass
    the configure bug which should be squashed after code release.
Platform tested:
    Tflops with parallel, both debug and production modes.
This commit is contained in:
Albert Cheng 2000-12-18 08:31:21 -05:00
parent 479c0a38d0
commit 6d71c2cacc

View File

@ -27,6 +27,9 @@ LDFLAGS="$LDFLAGS -lnoop_stubs"
RUNSERIAL="yod -sz 1"
RUNPARALLEL="yod -sz 8"
# CFLAGS must be set else configure set it to -g
CFLAGS="$CFLAGS"
# What must *always* be present for things to compile correctly?
#CPPFLAGS="$CPPFLAGS -I."