Skip to content

Commit

Permalink
Revert "Use this path by default"
Browse files Browse the repository at this point in the history
This reverts commit 0cf6547.
  • Loading branch information
inactive123 committed Sep 9, 2016
1 parent 0cf6547 commit 7b55725
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +313,14 @@ ifeq ($(STATIC_LINKING),1)
$(AR) rcs $@ $(foreach OBJECTS,$(OBJECTS),&& $(AR) q $@ $(OBJECTS))
else
@echo Linking $@...
ifeq ($(platform),win)
# Use a temporary file to hold the list of objects, as it can exceed windows shell command limits
$(file >[email protected],$(OBJECTS))
$(CC) $(CDEFS) $(CFLAGSOSDEPEND) $(PLATCFLAGS) $(LDFLAGS) -o $@ @[email protected] $(LIBS)
@rm [email protected]
else
$(CC) $(CDEFS) $(CFLAGSOSDEPEND) $(PLATCFLAGS) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBS)
endif
endif

%.o: %.c
Expand Down

0 comments on commit 7b55725

Please sign in to comment.