Skip to content

Commit

Permalink
sim: Link statically
Browse files Browse the repository at this point in the history
  • Loading branch information
agkaminski committed Sep 6, 2022
1 parent 0995834 commit f8adaa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ OBJ += main.o
$(CC) -c -o $@ $< $(CFLAGS) $(VERSION) $(DEBUG) -I.

$(OUT): $(OBJ)
gcc -o $@ $^ $(LIBS)
gcc --static -o $@ $^ $(LIBS)

install:
cp $(OUT) $(INSTALL_PATH)/$(OUT)
Expand Down

0 comments on commit f8adaa4

Please sign in to comment.