Now that we are building the python bindings on Windows once more, the extended testsuite is running. Mark a few failing tests and skip a few tests which hang. This should at least bring the bot back to green without reverting the Python changes which are an improvement for the build system and enable another ~35% of the test suite which was previously disabled.
21 lines
364 B
Makefile
21 lines
364 B
Makefile
C_SOURCES := main.c
|
|
|
|
ifeq "$(OS)" ""
|
|
OS = $(shell uname -s)
|
|
endif
|
|
|
|
ifeq "$(OS)" "Darwin"
|
|
LD_EXTRAS = -Xlinker -dead_strip
|
|
else
|
|
CFLAGS_EXTRAS += -fdata-sections -ffunction-sections
|
|
ifeq "$(OS)" "Windows_NT"
|
|
LD_EXTRAS = -Xlinker /OPT:REF
|
|
else
|
|
LD_EXTRAS = -Wl,--gc-sections
|
|
endif
|
|
endif
|
|
|
|
MAKE_DSYM := NO
|
|
|
|
include Makefile.rules
|