Skip to content

Commit

Permalink
fix: macOS build, once more
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Oct 9, 2021
1 parent 1f1dc0b commit 2ab8a38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lean.mk.in
Expand Up @@ -83,9 +83,9 @@ ifdef CMAKE_LIKE_OUTPUT
@echo "[ ] Linking $@"
endif
ifdef PROFILE
\time -f "%U %S" $(LEANC) -o "$@" $^ $(LINK_OPTS) 2>&1 > /dev/null | awk '{ printf "C linking %fs\n", $$1 + $$2 }' > /dev/stderr
\time -f "%U %S" $(LEANC) -o "$@" $^ $(LEANC_OPTS) $(LINK_OPTS) 2>&1 > /dev/null | awk '{ printf "C linking %fs\n", $$1 + $$2 }' > /dev/stderr
else
$(LEANC) -o "$@" $^ $(LINK_OPTS)
$(LEANC) -o "$@" $^ $(LEANC_OPTS) $(LINK_OPTS)
endif

$(LIB_OUT)/$(STATIC_LIB_NAME): $(addprefix $(TEMP_OUT)/,$(SRCS:.lean=.o)) | $(LIB_OUT)
Expand Down

0 comments on commit 2ab8a38

Please sign in to comment.