Compare commits

..

No commits in common. "master" and "2.6.0" have entirely different histories.

2
projects/unix/Makefile Normal file → Executable file
View file

@ -147,7 +147,7 @@ OBJDIR = _obj$(POSTFIX)
# base CFLAGS, LDLIBS, and LDFLAGS # base CFLAGS, LDLIBS, and LDFLAGS
OPTFLAGS ?= -O3 -flto OPTFLAGS ?= -O3 -flto
WARNFLAGS ?= -Wall WARNFLAGS ?= -Wall
CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -ffast-math -fvisibility=hidden -I$(SRCDIR) CFLAGS += $(OPTFLAGS) $(WARNFLAGS) -ffast-math -fno-strict-aliasing -fvisibility=hidden -I$(SRCDIR)
LDFLAGS += $(SHARED) LDFLAGS += $(SHARED)
# Since we are building a shared library, we must compile with -fPIC on some architectures # Since we are building a shared library, we must compile with -fPIC on some architectures