Files
cosmopolitan/third_party/lz4cli/lz4cli.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

64 lines
1.8 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───────────────────────┘
#
# WARNING
#
# This is GPL program. It's intended for compressing files.
# Cosmopolitan provides a 116 byte LZ4 runtime for extracting them.
# Consider using that before linking this.
#
# SEE ALSO
#
# libc/nexgen32e/lz4cpy.c
PKGS += THIRD_PARTY_LZ4CLI
THIRD_PARTY_LZ4CLI = \
o/$(MODE)/third_party/lz4cli/lz4cli.com
THIRD_PARTY_LZ4CLI_OBJS = \
o/$(MODE)/third_party/lz4cli/bench.o \
o/$(MODE)/third_party/lz4cli/lz4.o \
o/$(MODE)/third_party/lz4cli/lz4cli.o \
o/$(MODE)/third_party/lz4cli/lz4io.o \
o/$(MODE)/third_party/lz4cli/lz4hc.o \
o/$(MODE)/third_party/lz4cli/lz4frame.o \
o/$(MODE)/third_party/lz4cli/datagen.o \
o/$(MODE)/third_party/lz4cli/xxhash.o
o/$(MODE)/third_party/lz4cli/lz4.o \
o/$(MODE)/third_party/lz4cli/lz4io.o \
o/$(MODE)/third_party/lz4cli/lz4hc.o \
o/$(MODE)/third_party/lz4cli/lz4frame.o \
o/$(MODE)/third_party/lz4cli/datagen.o: \
DEFAULT_CPPFLAGS += \
-DSTACK_FRAME_UNLIMITED
THIRD_PARTY_LZ4CLI_DIRECTDEPS = \
LIBC_CALLS_HEFTY \
LIBC_INTRIN \
LIBC_STDIO \
LIBC_TIME \
LIBC_UNICODE
THIRD_PARTY_LZ4CLI_DEPS := \
$(call uniq,$(foreach x,$(THIRD_PARTY_LZ4CLI_DIRECTDEPS),$($(x))))
$(THIRD_PARTY_LZ4CLI_OBJS): \
DEFAULT_CPPFLAGS += \
-isystem third_party/lz4cli
o/$(MODE)/third_party/lz4cli/lz4cli.com.dbg: \
$(THIRD_PARTY_LZ4CLI_DEPS) \
$(THIRD_PARTY_LZ4CLI_OBJS) \
$(CRT) \
$(APE)
@$(APELINK)
$(THIRD_PARTY_LZ4CLI_OBJS): \
$(BUILD_FILES) \
third_party/lz4cli/lz4cli.mk
.PHONY: o/$(MODE)/third_party/lz4cli
o/$(MODE)/third_party/lz4cli: $(THIRD_PARTY_LZ4CLI)