Skip to content

Commit 2c8ae2d

Browse files
committed
fix(linux): curl linking after other objects
1 parent b7c35cd commit 2c8ae2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ all: $(TARGET)
105105

106106
# Loadable library
107107
$(TARGET): $(RELEASE_OBJ) $(DEF_FILE)
108-
$(CC) $(LDFLAGS) $? -o $@
108+
$(CC) $? -o $@ $(LDFLAGS)
109109
ifeq ($(PLATFORM),windows)
110110
# Generate import library for Windows
111111
dlltool -D $@ -d $(DEF_FILE) -l $(DIST_DIR)/js.lib

0 commit comments

Comments
 (0)