Skip to content
Snippets Groups Projects
Verified Commit 6fe3da95 authored by Benny Baumann's avatar Benny Baumann
Browse files

chg: Use libc++ on FreeBSD to avoid missing vtable and typeinfo issues

parent 35e5f345
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -10,6 +10,7 @@ LFLAGS += -flto ...@@ -10,6 +10,7 @@ LFLAGS += -flto
else ifeq "${OS}" "FreeBSD" else ifeq "${OS}" "FreeBSD"
CFLAGS += -Wno-error=sign-conversion CFLAGS += -Wno-error=sign-conversion
CXXFLAGS += -Wno-error=sign-conversion CXXFLAGS += -Wno-error=sign-conversion
LFLAGS += -stdlib=libc++
endif endif
CC ?= gcc CC ?= gcc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment