1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-31 16:52:10 +01:00

LP-29 compile with libc++ on osx to fix issues when linking with osg

This commit is contained in:
Philippe Renon 2015-12-02 23:16:05 +01:00
parent 2f18791a43
commit a1ac5fb532

View File

@ -254,9 +254,11 @@ macx {
QMAKE_CFLAGS_WARN_ON += -Werror QMAKE_CFLAGS_WARN_ON += -Werror
QMAKE_CXXFLAGS_WARN_ON += -Wno-gnu-static-float-init QMAKE_CXXFLAGS_WARN_ON += -Wno-gnu-static-float-init
} }
# building with libc++ is needed when linking with osg/gdal
QMAKE_CXXFLAGS += -stdlib=libc++
QMAKE_LFLAGS += -stdlib=libc++
} }
# use ccache when available # use ccache when available
QMAKE_CC = $$(CCACHE) $$QMAKE_CC QMAKE_CC = $$(CCACHE) $$QMAKE_CC
QMAKE_CXX = $$(CCACHE) $$QMAKE_CXX QMAKE_CXX = $$(CCACHE) $$QMAKE_CXX