Import C++ Standard Template Library
You can now use the hardest fastest and most dangerous language there is
with Cosmopolitan. So far about 75% of LLVM libcxx has been added. A few
breaking changes needed to be made to help this go smoothly.
- Rename nothrow to dontthrow
- Rename nodiscard to dontdiscard
- Add some libm functions, e.g. lgamma, nan, etc.
- Change intmax_t from int128 to int64 like everything else
- Introduce %jjd formatting directive for int128_t
- Introduce strtoi128(), strtou128(), etc.
- Rename bsrmax() to bsr128()
Some of the templates that should be working currently are std::vector,
std::string, std::map, std::set, std::deque, etc.
2022-03-22 12:51:41 +00:00
|
|
|
#-*-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 += THIRD_PARTY_SMALLZ4
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_SRCS = $(THIRD_PARTY_SMALLZ4_A_SRCS)
|
|
|
|
THIRD_PARTY_SMALLZ4_HDRS = $(THIRD_PARTY_SMALLZ4_A_HDRS)
|
|
|
|
THIRD_PARTY_SMALLZ4_BINS = $(THIRD_PARTY_SMALLZ4_COMS) $(THIRD_PARTY_SMALLZ4_COMS:%=%.dbg)
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_ARTIFACTS += THIRD_PARTY_SMALLZ4_A
|
|
|
|
THIRD_PARTY_SMALLZ4 = $(THIRD_PARTY_SMALLZ4_A_DEPS) $(THIRD_PARTY_SMALLZ4_A)
|
|
|
|
THIRD_PARTY_SMALLZ4_A = o/$(MODE)/third_party/smallz4/smallz4.a
|
|
|
|
THIRD_PARTY_SMALLZ4_A_FILES := $(wildcard third_party/smallz4/*)
|
|
|
|
THIRD_PARTY_SMALLZ4_A_HDRS = $(filter %.hh,$(THIRD_PARTY_SMALLZ4_A_FILES))
|
|
|
|
THIRD_PARTY_SMALLZ4_A_SRCS_S = $(filter %.S,$(THIRD_PARTY_SMALLZ4_A_FILES))
|
|
|
|
THIRD_PARTY_SMALLZ4_A_SRCS_C = $(filter %.c,$(THIRD_PARTY_SMALLZ4_A_FILES))
|
|
|
|
THIRD_PARTY_SMALLZ4_A_SRCS_CC = $(filter %.cc,$(THIRD_PARTY_SMALLZ4_A_FILES))
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_A_SRCS = \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_S) \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_C) \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_CC)
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_A_OBJS = \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_S:%.S=o/$(MODE)/%.o) \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_C:%.c=o/$(MODE)/%.o) \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_SRCS_CC:%.cc=o/$(MODE)/%.o)
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_A_DIRECTDEPS = \
|
|
|
|
LIBC_FMT \
|
|
|
|
LIBC_INTRIN \
|
|
|
|
LIBC_LOG \
|
|
|
|
LIBC_MEM \
|
|
|
|
LIBC_NEXGEN32E \
|
|
|
|
LIBC_RUNTIME \
|
|
|
|
LIBC_CALLS \
|
|
|
|
LIBC_UNICODE \
|
|
|
|
LIBC_STDIO \
|
|
|
|
LIBC_STR \
|
|
|
|
LIBC_STUBS \
|
|
|
|
THIRD_PARTY_LIBCXX
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_A_DEPS := \
|
|
|
|
$(call uniq,$(foreach x,$(THIRD_PARTY_SMALLZ4_A_DIRECTDEPS),$($(x))))
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_A_CHECKS = \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A).pkg \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_HDRS:%=o/$(MODE)/%.ok)
|
|
|
|
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A): \
|
|
|
|
third_party/smallz4/ \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A).pkg \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_OBJS)
|
|
|
|
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A).pkg: \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_A_OBJS) \
|
|
|
|
$(foreach x,$(THIRD_PARTY_SMALLZ4_A_DIRECTDEPS),$($(x)_A).pkg)
|
|
|
|
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4.com.dbg: \
|
|
|
|
$(THIRD_PARTY_SMALLZ4) \
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4.o \
|
|
|
|
$(CRT) \
|
2022-05-25 18:31:08 +00:00
|
|
|
$(APE_NO_MODIFY_SELF)
|
Import C++ Standard Template Library
You can now use the hardest fastest and most dangerous language there is
with Cosmopolitan. So far about 75% of LLVM libcxx has been added. A few
breaking changes needed to be made to help this go smoothly.
- Rename nothrow to dontthrow
- Rename nodiscard to dontdiscard
- Add some libm functions, e.g. lgamma, nan, etc.
- Change intmax_t from int128 to int64 like everything else
- Introduce %jjd formatting directive for int128_t
- Introduce strtoi128(), strtou128(), etc.
- Rename bsrmax() to bsr128()
Some of the templates that should be working currently are std::vector,
std::string, std::map, std::set, std::deque, etc.
2022-03-22 12:51:41 +00:00
|
|
|
@$(APELINK)
|
|
|
|
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4cat.com.dbg: \
|
|
|
|
$(THIRD_PARTY_SMALLZ4) \
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4cat.o \
|
|
|
|
$(CRT) \
|
2022-05-25 18:31:08 +00:00
|
|
|
$(APE_NO_MODIFY_SELF)
|
Import C++ Standard Template Library
You can now use the hardest fastest and most dangerous language there is
with Cosmopolitan. So far about 75% of LLVM libcxx has been added. A few
breaking changes needed to be made to help this go smoothly.
- Rename nothrow to dontthrow
- Rename nodiscard to dontdiscard
- Add some libm functions, e.g. lgamma, nan, etc.
- Change intmax_t from int128 to int64 like everything else
- Introduce %jjd formatting directive for int128_t
- Introduce strtoi128(), strtou128(), etc.
- Rename bsrmax() to bsr128()
Some of the templates that should be working currently are std::vector,
std::string, std::map, std::set, std::deque, etc.
2022-03-22 12:51:41 +00:00
|
|
|
@$(APELINK)
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_COMS = \
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4.com \
|
|
|
|
o/$(MODE)/third_party/smallz4/smallz4cat.com
|
|
|
|
|
|
|
|
THIRD_PARTY_SMALLZ4_LIBS = $(foreach x,$(THIRD_PARTY_SMALLZ4_ARTIFACTS),$($(x)))
|
|
|
|
THIRD_PARTY_SMALLZ4_SRCS = $(foreach x,$(THIRD_PARTY_SMALLZ4_ARTIFACTS),$($(x)_SRCS))
|
|
|
|
THIRD_PARTY_SMALLZ4_CHECKS = $(foreach x,$(THIRD_PARTY_SMALLZ4_ARTIFACTS),$($(x)_CHECKS))
|
|
|
|
THIRD_PARTY_SMALLZ4_OBJS = $(foreach x,$(THIRD_PARTY_SMALLZ4_ARTIFACTS),$($(x)_OBJS))
|
|
|
|
$(THIRD_PARTY_SMALLZ4_OBJS): $(BUILD_FILES) third_party/smallz4/smallz4.mk
|
|
|
|
|
|
|
|
.PHONY: o/$(MODE)/third_party/smallz4
|
|
|
|
o/$(MODE)/third_party/smallz4: \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_BINS) \
|
|
|
|
$(THIRD_PARTY_SMALLZ4_CHECKS)
|