Changed the compilation line for dlamch to use -O0 at the end of the line

to always override other optimization flags and turn off optimization.
This commit is contained in:
falgout 2011-11-14 21:45:34 +00:00
parent 91af49bed5
commit f315060852

View File

@ -111,7 +111,8 @@ distclean: clean
# Rules
#################################################################
# compile without optimization
dlamch.o : dlamch.c ${LAPACK_HEADERS}
${CC} ${SHARED_COMPILE_FLAG} ${C_COMPILE_FLAGS} -c dlamch.c
${CC} ${CFLAGS} -O0 -c dlamch.c
${OBJS}: ${LAPACK_HEADERS}