1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

try to keep libzstd.a "as is" once created

to be compatible with scenarios such as
`make -j allmost`
This commit is contained in:
Yann Collet
2020-12-20 17:10:57 -08:00
parent 7c495e8ea2
commit 9648bf027b
4 changed files with 13 additions and 15 deletions

View File

@ -229,7 +229,7 @@ $(BUILD_DIR)/zstd : $(ZSTD_OBJ)
@echo "$(LZMA_MSG)"
@echo "$(LZ4_MSG)"
@echo LINK $@
$(CC) $(FLAGS) $^ -o $@$(EXT) $(LDFLAGS)
$(LINK.o) $^ -o $(LDLIBS) $@$(EXT)
ifeq ($(HAVE_HASH),1)
SRCBIN_HASH = $(shell cat $(BUILD_DIR)/zstd 2> $(VOID) | $(HASH) | cut -f 1 -d " ")