1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: fix for static lib builds on linux.

This commit is contained in:
jules 2013-06-21 17:24:37 +01:00
parent 135a9d1f5f
commit 62bed4a224

View file

@ -239,7 +239,7 @@ private:
out << " TARGET := " << escapeSpaces (targetName) << newLine;
if (projectType.isStaticLibrary())
out << " BLDCMD = ar -rcs $(OUTDIR)/$(TARGET) $(OBJECTS) $(TARGET_ARCH)" << newLine;
out << " BLDCMD = ar -rcs $(OUTDIR)/$(TARGET) $(OBJECTS)" << newLine;
else
out << " BLDCMD = $(CXX) -o $(OUTDIR)/$(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(TARGET_ARCH)" << newLine;