Browse Source

Define CXX for glibc builds.

FSF glibc now has a C++ file, so this is needed to make builds work with
upstream glibc.
pull/381/head
Jim Wilson 8 years ago
parent
commit
5f1c2b4569
  1. 1
      Makefile.in

1
Makefile.in

@ -237,6 +237,7 @@ endif
mkdir $(notdir $@)
cd $(notdir $@) && \
CC="$(GLIBC_CC_FOR_TARGET) $($@_CFLAGS)" \
CXX="$(GLIBC_CXX_FOR_TARGET) $($@_CFLAGS)" \
CFLAGS="$(CFLAGS_FOR_TARGET) -g -O2 $($@_CFLAGS)" \
CXXFLAGS="$(CXXFLAGS_FOR_TARGET) -g -O2 $($@_CFLAGS)" \
ASFLAGS="$(ASFLAGS_FOR_TARGET) $($@_CFLAGS)" \

Loading…
Cancel
Save