Browse Source

Use the correct compiler-rt (#517)

eg. when a user specifies non-default -resource-dir.

cf. https://github.com/WebAssembly/wasi-sdk/pull/446
pull/522/head
YAMAMOTO Takashi 4 months ago
committed by GitHub
parent
commit
b9ef79d7db
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      Makefile

2
Makefile

@ -66,7 +66,7 @@ ifeq ($(WASI_SNAPSHOT), p2)
TARGET_TRIPLE = wasm32-wasip2
endif
BUILTINS_LIB ?= $(shell ${CC} --print-libgcc-file-name)
BUILTINS_LIB ?= $(shell ${CC} ${CFLAGS} --print-libgcc-file-name)
# These variables describe the locations of various files and directories in
# the source tree.

Loading…
Cancel
Save