mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-08 07:23:33 +00:00
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!
62 lines
1.6 KiB
Makefile
62 lines
1.6 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 += TEST_LIBC_INTRIN
|
|
|
|
TEST_LIBC_INTRIN_SRCS := $(wildcard test/libc/intrin/*.c)
|
|
TEST_LIBC_INTRIN_SRCS_TEST = $(filter %_test.c,$(TEST_LIBC_INTRIN_SRCS))
|
|
|
|
TEST_LIBC_INTRIN_OBJS = \
|
|
$(TEST_LIBC_INTRIN_SRCS:%.c=o/$(MODE)/%.o)
|
|
|
|
TEST_LIBC_INTRIN_COMS = \
|
|
$(TEST_LIBC_INTRIN_SRCS:%.c=o/$(MODE)/%.com)
|
|
|
|
TEST_LIBC_INTRIN_BINS = \
|
|
$(TEST_LIBC_INTRIN_COMS) \
|
|
$(TEST_LIBC_INTRIN_COMS:%=%.dbg)
|
|
|
|
TEST_LIBC_INTRIN_TESTS = \
|
|
$(TEST_LIBC_INTRIN_SRCS_TEST:%.c=o/$(MODE)/%.com.ok)
|
|
|
|
TEST_LIBC_INTRIN_CHECKS = \
|
|
$(TEST_LIBC_INTRIN_SRCS_TEST:%.c=o/$(MODE)/%.com.runs)
|
|
|
|
TEST_LIBC_INTRIN_DIRECTDEPS = \
|
|
LIBC_FMT \
|
|
LIBC_INTRIN \
|
|
LIBC_LOG \
|
|
LIBC_NEXGEN32E \
|
|
LIBC_RAND \
|
|
LIBC_RUNTIME \
|
|
LIBC_STR \
|
|
LIBC_STUBS \
|
|
LIBC_TESTLIB \
|
|
LIBC_TINYMATH \
|
|
LIBC_X \
|
|
TOOL_VIZ_LIB
|
|
|
|
TEST_LIBC_INTRIN_DEPS := \
|
|
$(call uniq,$(foreach x,$(TEST_LIBC_INTRIN_DIRECTDEPS),$($(x))))
|
|
|
|
o/$(MODE)/test/libc/intrin/intrin.pkg: \
|
|
$(TEST_LIBC_INTRIN_OBJS) \
|
|
$(foreach x,$(TEST_LIBC_INTRIN_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
o/$(MODE)/test/libc/intrin/%.com.dbg: \
|
|
$(TEST_LIBC_INTRIN_DEPS) \
|
|
o/$(MODE)/test/libc/intrin/%.o \
|
|
o/$(MODE)/test/libc/intrin/intrin.pkg \
|
|
$(LIBC_TESTMAIN) \
|
|
$(CRT) \
|
|
$(APE)
|
|
@$(APELINK)
|
|
|
|
# $(TEST_LIBC_INTRIN_OBJS): \
|
|
# OVERRIDE_CFLAGS += \
|
|
# -fsanitize=address
|
|
|
|
.PHONY: o/$(MODE)/test/libc/intrin
|
|
o/$(MODE)/test/libc/intrin: \
|
|
$(TEST_LIBC_INTRIN_BINS) \
|
|
$(TEST_LIBC_INTRIN_CHECKS)
|