2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-21 01:29:06 +00:00

static-libgcc

git-svn-id: svn+q:///qpdf/trunk@783 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
Jay Berkenbilt 2009-10-11 03:03:46 +00:00
parent c96f372a6e
commit c09b9cc427

View File

@ -55,5 +55,5 @@ endef
# 1 2 3 4
# Usage: $(call makebin,objs,binary,ldflags,libs)
define makebin
$(CXX) $(CXXFLAGS) $(1) -o $(2) $(3) $(4)
$(CXX) $(CXXFLAGS) -static-libgcc $(1) -o $(2) $(3) $(4)
endef