This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
38
Wiki
Activity
Browse Source
Move LDFLAGS to end of compiler flags, since library order matters for Mingw.
tags/v2.5.2
Andrew Belt
6 months ago
parent
699a297534
commit
fc0a319ea4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
compile.mk
+ 1
- 1
compile.mk
View File
@@ -66,7 +66,7 @@ DEPENDENCIES := $(patsubst %, build/%.d, $(SOURCES))
# Final targets
$(TARGET): $(OBJECTS)
$(CXX) $(CXXFLAGS) $(LDFLAGS)
-o $@ $^
$(CXX) $(CXXFLAGS)
-o $@ $^
$(LDFLAGS)
-include $(DEPENDENCIES)
Write
Preview
Loading…
Cancel
Save