We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3496625 + ad7de0c commit 8ee70f2Copy full SHA for 8ee70f2
1 file changed
Makefile
@@ -15,6 +15,7 @@ CFLAGS := -g -O2 -std=c99 -Wall -Werror -Wextra -Wpedantic -Wundef -Wconversion
15
JAVA_WASM_CFLAGS := -g -Oz -std=c99 -Wall -Werror -Wextra -Wpedantic -Wundef -Wconversion -Wno-missing-braces -fPIC -fvisibility=hidden -Wimplicit-fallthrough $(JAVA_WASM_CFLAGS)
16
CC ?= cc
17
AR ?= ar
18
+ARFLAGS ?= -r$(V0:1=v)
19
WASI_SDK_PATH := /opt/wasi-sdk
20
21
MAKEDIRS ?= mkdir -p
@@ -38,7 +39,7 @@ build/libprism.$(SOEXT): $(SHARED_OBJECTS)
38
39
40
build/libprism.a: $(STATIC_OBJECTS)
41
$(ECHO) "building $@ with $(AR)"
- $(Q) $(AR) $(ARFLAGS) $@ $(STATIC_OBJECTS) $(Q1:0=>/dev/null)
42
+ $(Q) $(AR) $(ARFLAGS) $@ $(STATIC_OBJECTS)
43
44
javascript/src/prism.wasm: Makefile $(SOURCES) $(HEADERS)
45
$(ECHO) "building $@"
0 commit comments