Skip to content

Commit b121a0e

Browse files
Add verbose logging to Emscripten build process
- Remove @ symbol to show full emcc command during build - Add -v flag to emcc for verbose compilation output - Improves visibility of C code compilation logs in Docker builds Co-Authored-By: Dan Lynch <[email protected]>
1 parent b10fd34 commit b121a0e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ $(LIBPG_QUERY_ARCHIVE): $(LIBPG_QUERY_DIR)
5050
# Build libpg-query-node WASM module
5151
$(OUT_FILES): $(LIBPG_QUERY_ARCHIVE) $(LIBPG_QUERY_HEADER) $(SRC_FILES)
5252
ifdef EMSCRIPTEN
53-
@ $(CC) \
53+
$(CC) \
54+
-v \
5455
$(CXXFLAGS) \
5556
-I$(LIBPG_QUERY_DIR) \
5657
-L$(LIBPG_QUERY_DIR) \

0 commit comments

Comments
 (0)