Browse Source

* Makefile.in: Move -fno-implicit-template from CXXFLAGS

to LIBCXXFLAGS.  Tests are better run without it.
gdb-4_18-branch
Per Bothner 32 years ago
parent
commit
864a5888bd
  1. 4
      Makefile.in

4
Makefile.in

@ -77,8 +77,8 @@ CHILL_LIB = -lchill
CXX = gcc
# Use -O2 to stress test the compiler.
CXXFLAGS = -g -O2 -fno-implicit-templates
LIBCXXFLAGS = $(CXXFLAGS)
CXXFLAGS = -g -O2
LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET)

Loading…
Cancel
Save