Make llama.com -h print to stdout

This commit is contained in:
Justine Tunney 2023-05-10 04:55:59 -07:00
parent f312f706f4
commit ca990ef091
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
5 changed files with 74 additions and 72 deletions

View file

@ -48,6 +48,10 @@ $(THIRD_PARTY_COMPILER_RT_A_OBJS): private \
$(OLD_CODE) \
-DCRT_HAS_128BIT
# these assembly files are safe to build on aarch64
o/$(MODE)/third_party/compiler_rt/comprt.o: third_party/compiler_rt/comprt.S
@$(COMPILE) -AOBJECTIFY.S $(OBJECTIFY.S) $(OUTPUT_OPTION) -c $<
THIRD_PARTY_COMPILER_RT_LIBS = $(foreach x,$(THIRD_PARTY_COMPILER_RT_ARTIFACTS),$($(x)))
THIRD_PARTY_COMPILER_RT_SRCS = $(foreach x,$(THIRD_PARTY_COMPILER_RT_ARTIFACTS),$($(x)_SRCS))
THIRD_PARTY_COMPILER_RT_HDRS = $(foreach x,$(THIRD_PARTY_COMPILER_RT_ARTIFACTS),$($(x)_HDRS))