search for: r_prog_cc_flag

Displaying 1 result from an estimated 1 matches for "r_prog_cc_flag".

2000 Feb 08
0
extra flags for cc and f77 on alpha (PR#420)
...floating point exception handling (if I understood what was said in the manpage). Correct me if I'm wrong. Patch below. --- ./configure.in.cc-conf-patch Mon Feb 7 19:47:09 2000 +++ ./configure.in Mon Feb 7 21:50:36 2000 @@ -440,6 +455,13 @@ AC_DEFINE(HAVE_NO_SYMBOL_UNDERSCORE) R_PROG_CC_FLAG(-ieee_with_inexact, R_XTRA_CFLAGS="${R_XTRA_CFLAGS} -ieee_with_inexact") + if test -z "${GCC}"; then + R_PROG_CC_FLAG(-std1, + R_XTRA_CFLAGS="${R_XTRA_CFLAGS} -std1") + fi + if test -z "${G77}"; then + R_XTRA_FFLAGS="${...