Skip to content

Commit

Permalink
fixup! fixup! fixup! fix build on windows
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
vchuravy committed Oct 9, 2016
1 parent 0d4109e commit 1bc4ec6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,11 @@ OBJCOPY := $(CROSS_COMPILE)objcopy
# file extensions
ifeq ($(OS), WINNT)
SHLIB_EXT := dll
STATICLIB_EXT := a # MSVC is lib
ifeq ($(USE_MSVC),1)
STATICLIB_EXT := lib
else
STATICLIB_EXT := a
endif
else ifeq ($(OS), Darwin)
SHLIB_EXT := dylib
STATICLIB_EXT := a
Expand Down

0 comments on commit 1bc4ec6

Please sign in to comment.