1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-27 13:47:42 +00:00

Merge pull request #1624 from nlordell/fix/libjanet-ldflags

Fix `LDFLAGS` Usage in Makefile
This commit is contained in:
Calvin Rose
2025-08-17 20:58:40 -05:00
committed by GitHub

View File

@@ -54,7 +54,7 @@ HOSTAR?=$(AR)
# Symbols are (optionally) removed later, keep -g as default! # Symbols are (optionally) removed later, keep -g as default!
CFLAGS?=-O2 -g CFLAGS?=-O2 -g
LDFLAGS?=-rdynamic LDFLAGS?=-rdynamic
LIBJANET_LDFLAGS?=$(LD_FLAGS) LIBJANET_LDFLAGS?=$(LDFLAGS)
RUN:=$(RUN) RUN:=$(RUN)