mirror of
https://github.com/dlang/dmd.git
synced 2025-04-25 20:50:41 +03:00

* GHA main: Add Alpine Linux job, to CI-test musl libc Incl. some test fixes. * [refactor common isDlcoseNoop logic and prepare for Darwin support]
13 lines
416 B
Makefile
13 lines
416 B
Makefile
TESTS := importc_compare
|
|
|
|
# FIXME: fails on Alpine v3.21 with conflicting struct declarations in the C headers:
|
|
# /usr/include/asm-generic/fcntl.h(195): Error: struct `importc_includes.flock` conflicts with struct `importc_includes.flock` at /usr/include/fcntl.h(24)
|
|
ifeq ($(OS),linux)
|
|
ifeq (1,$(shell which apk &>/dev/null && echo 1))
|
|
TESTS :=
|
|
endif
|
|
endif
|
|
|
|
include ../common.mak
|
|
|
|
extra_dflags += -d
|