Skip to content

Commit

Permalink
Fix ublio/utf8proc shared libary linking order for GNU ld
Browse files Browse the repository at this point in the history
  • Loading branch information
0x09 committed May 31, 2021
1 parent 123f69b commit 0c63f43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ $(LIBS): always_check
lib: $(LIBS)

hfsfuse: src/hfsfuse.o $(LIBS)
$(CC) $(CFLAGS) $(APP_LIB) -o $@ src/hfsfuse.o $(LIBS) $(FUSE_LIB) -lpthread
$(CC) $(CFLAGS) -o $@ src/hfsfuse.o $(LIBS) $(APP_LIB) $(FUSE_LIB) -lpthread

hfsdump: src/hfsdump.o $(LIBS)
$(CC) $(CFLAGS) $(APP_LIB) -o $@ src/hfsdump.o $(LIBS) -lpthread
$(CC) $(CFLAGS) -o $@ src/hfsdump.o $(LIBS) $(APP_LIB) -lpthread

clean:
for dir in $(LIBDIRS); do $(MAKE) -C $$dir clean; done
Expand Down

0 comments on commit 0c63f43

Please sign in to comment.