diff options
author | David Ostrovsky <david@ostrovsky.org> | 2013-02-24 23:30:30 +0100 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2013-02-24 23:34:02 +0100 |
commit | f4a6b7d3d6ab2599dc795b640e14af808ea9de35 (patch) | |
tree | 9f83e8e5d28ee364ede89da844f4d943d7a62c2b /solenv | |
parent | 1baeaec3c98987fbedb6d02200fc4a95478adafb (diff) |
fix HAVE_CXX0X case on MinGW
During configure phase HAVE_CXX0X is determined and exposed
if the current gcc version supports it. With gcc 4.7.2 this
is the case. Activate it during compilation phase too.
Change-Id: I7b738de083fa337a422c20bdf88d9dca5f8303ed
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/WNT_INTEL_GCC.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/solenv/gbuild/platform/WNT_INTEL_GCC.mk b/solenv/gbuild/platform/WNT_INTEL_GCC.mk index b9edab02d354..3a5be2cac7fd 100644 --- a/solenv/gbuild/platform/WNT_INTEL_GCC.mk +++ b/solenv/gbuild/platform/WNT_INTEL_GCC.mk @@ -85,8 +85,7 @@ gb_CFLAGS += --sysroot=$(SYSBASE) endif ifeq ($(HAVE_CXX0X),TRUE) -# We can turn on additional useful checks with c++0x -# FIXME still does not compile fully gb_CXXFLAGS += -std=gnu++0x +gb_CXXFLAGS += -std=gnu++0x endif # At least sal defines its own __main, which would cause DLLs linking against |