Skip to content

Commit

Permalink
do not use -stdlib=libc++ on Linux as it doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
adrpo committed Jun 10, 2020
1 parent b5354d9 commit ab8b475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMParser/Makefile
Expand Up @@ -27,7 +27,7 @@ libomcparserantlr4.a: $(OBJS)
$(OBJS): $(CPP_FILES) install/lib/libantlr4-runtime.a

3rdParty/antlr4/runtime/Cpp/build/Makefile:
(cd 3rdParty/antlr4/runtime/Cpp/build && $(CMAKE) -DCMAKE_VERBOSE_MAKEFILE:Bool=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_COLOR_MAKEFILE:Bool=OFF -DCMAKE_INSTALL_PREFIX:String=../../../../../install ../ -G $(CMAKE_TARGET))
(cd 3rdParty/antlr4/runtime/Cpp/build && $(CMAKE) -DCMAKE_VERBOSE_MAKEFILE:Bool=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_COLOR_MAKEFILE:Bool=OFF -DCMAKE_INSTALL_PREFIX:String=../../../../../install -DWITH_LIBCXX:Bool=OFF ../ -G $(CMAKE_TARGET))

install/lib/libantlr4-runtime.a: 3rdParty/antlr4/runtime/Cpp/CMakeLists.txt
mkdir -p 3rdParty/antlr4/runtime/Cpp/build
Expand Down

0 comments on commit ab8b475

Please sign in to comment.