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

cfg: Ignore sign conversion errors on FreeBSD for now, until fixed upstream in ncurses

parent 4dc60c4c
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -7,6 +7,9 @@ ifeq "${OS}" "Linux" ...@@ -7,6 +7,9 @@ ifeq "${OS}" "Linux"
CFLAGS += -flto CFLAGS += -flto
CXXFLAGS += -flto CXXFLAGS += -flto
LFLAGS += -flto LFLAGS += -flto
else ifeq "${OS}" "FreeBSD"
CFLAGS += -Wno-error=sign-conversion
CXXFLAGS += -Wno-error=sign-conversion
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