Skip to content
Prev 7924 / 398503 Next

Installing R on RedHat7.0

Prof Brian Ripley <ripley at stats.ox.ac.uk> writes:
Hmm. With gcc, you can specify -O0 which cancels any previous -O
options, so it seems to work to insert the following rule in
src/appl/Makefile

machar.o: machar.c
        $(CC) $(ALL_CPPFLAGS) $(ALL_CFLAGS) -O0 -c $< -o $@

Does that break badly with other compilers?