cosmopolitan/libc/math/math.mk
Justine Tunney 9f68d6eee9 Fix link order in cosmopolitan.a
It turned out that the linker was doing the wrong with the amalgamation
library concerning weak stubs. A regression test has been added and new
binaries have been uploaded to https://justine.lol/cosmopolitan/

Ideally this should be fixed by building a tool that turns multiple .a
files into a single .a file with deduplication. As a workaround for now
the cosmopolitan.a build is restructured to not include LIBC_STUBS which
meant technical debt needed to be paid off where non-stub interfaces
were moved to LIBC_INTRIN and LIBC_NEXGEN32E.

Thank @PerfectProductions in #31 for the report!
2021-01-16 12:05:41 -08:00

55 lines
1.7 KiB
Makefile

#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
PKGS += LIBC_MATH
LIBC_MATH_ARTIFACTS += LIBC_MATH_A
LIBC_MATH = $(LIBC_MATH_A_DEPS) $(LIBC_MATH_A)
LIBC_MATH_A = o/$(MODE)/libc/math/math.a
LIBC_MATH_A_FILES := $(wildcard libc/math/*)
LIBC_MATH_A_SRCS_A = $(filter %.s,$(LIBC_MATH_A_FILES))
LIBC_MATH_A_SRCS_S = $(filter %.S,$(LIBC_MATH_A_FILES))
LIBC_MATH_A_SRCS_C = $(filter %.c,$(LIBC_MATH_A_FILES))
LIBC_MATH_A_SRCS = \
$(LIBC_MATH_A_SRCS_A) \
$(LIBC_MATH_A_SRCS_S) \
$(LIBC_MATH_A_SRCS_C)
LIBC_MATH_A_OBJS = \
$(LIBC_MATH_A_SRCS_A:%.s=o/$(MODE)/%.o) \
$(LIBC_MATH_A_SRCS_S:%.S=o/$(MODE)/%.o) \
$(LIBC_MATH_A_SRCS_C:%.c=o/$(MODE)/%.o)
LIBC_MATH_A_CHECKS = $(LIBC_MATH_A).pkg
LIBC_MATH_A_DIRECTDEPS = \
LIBC_INTRIN \
LIBC_NEXGEN32E \
LIBC_STUBS
LIBC_MATH_A_DEPS := \
$(call uniq,$(foreach x,$(LIBC_MATH_A_DIRECTDEPS),$($(x))))
$(LIBC_MATH_A_OBJS): \
OVERRIDE_CFLAGS += \
$(OLD_CODE) \
-Wno-unknown-pragmas \
-Wno-parentheses
$(LIBC_MATH_A): libc/math/ \
$(LIBC_MATH_A).pkg \
$(LIBC_MATH_A_OBJS)
$(LIBC_MATH_A).pkg: \
$(LIBC_MATH_A_OBJS) \
$(foreach x,$(LIBC_MATH_A_DIRECTDEPS),$($(x)_A).pkg)
LIBC_MATH_LIBS = $(foreach x,$(LIBC_MATH_ARTIFACTS),$($(x)))
LIBC_MATH_SRCS = $(foreach x,$(LIBC_MATH_ARTIFACTS),$($(x)_SRCS))
LIBC_MATH_CHECKS = $(foreach x,$(LIBC_MATH_ARTIFACTS),$($(x)_CHECKS))
LIBC_MATH_OBJS = $(foreach x,$(LIBC_MATH_ARTIFACTS),$($(x)_OBJS))
$(LIBC_MATH_OBJS): $(BUILD_FILES) libc/math/math.mk
.PHONY: o/$(MODE)/libc/math
o/$(MODE)/libc/math: $(LIBC_MATH_CHECKS)