fixing simulator build script
This commit is contained in:
parent
885a02766d
commit
33d78215ce
|
@ -1,6 +1,7 @@
|
||||||
current binaries are always available at http://rusefi.com/build_server/
|
current binaries are always available at http://rusefi.com/build_server/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#Releases
|
#Releases
|
||||||
|
|
||||||
| Release date | Revision | Details |
|
| Release date | Revision | Details |
|
||||||
|
@ -53,3 +54,10 @@ General source code Q&A is at http://rusefi.com/forum/viewtopic.php?f=5&t=10
|
||||||
Facebook https://www.facebook.com/rusEfiECU
|
Facebook https://www.facebook.com/rusEfiECU
|
||||||
|
|
||||||
youtube https://www.youtube.com/user/rusefi
|
youtube https://www.youtube.com/user/rusefi
|
||||||
|
|
||||||
|
|
||||||
|
= How to build the code? =
|
||||||
|
|
||||||
|
We now use submodules:
|
||||||
|
|
||||||
|
git submodule update --init
|
||||||
|
|
|
@ -74,7 +74,7 @@ ASFLAGS = $(MCFLAGS) -Wa,-amhls=$(LSTDIR)/$(notdir $(<:.s=.lst)) $(ADEFS)
|
||||||
ASXFLAGS = $(MCFLAGS) -Wa,-amhls=$(LSTDIR)/$(notdir $(<:.S=.lst)) $(ADEFS)
|
ASXFLAGS = $(MCFLAGS) -Wa,-amhls=$(LSTDIR)/$(notdir $(<:.S=.lst)) $(ADEFS)
|
||||||
CFLAGS = $(MCFLAGS) $(OPT) $(COPT) $(CWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.c=.lst)) $(DEFS)
|
CFLAGS = $(MCFLAGS) $(OPT) $(COPT) $(CWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.c=.lst)) $(DEFS)
|
||||||
CPPFLAGS = $(MCFLAGS) $(OPT) $(CPPOPT) $(CPPWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.cpp=.lst)) $(DEFS)
|
CPPFLAGS = $(MCFLAGS) $(OPT) $(CPPOPT) $(CPPWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.cpp=.lst)) $(DEFS)
|
||||||
LDFLAGS = $(MCFLAGS) $(OPT) $(LLIBDIR) -Wl,-Map=$(BUILDDIR)/$(PROJECT).map,--cref,--no-warn-mismatch,$(LDOPT)
|
LDFLAGS = $(MCFLAGS) $(OPT) $(LLIBDIR) -Wl,-Map=$(BUILDDIR)/$(PROJECT).map,--cref,--no-warn-mismatch$(LDOPT)
|
||||||
|
|
||||||
# Generate dependency information
|
# Generate dependency information
|
||||||
ASFLAGS += -MD -MP -MF .dep/$(@F).d
|
ASFLAGS += -MD -MP -MF .dep/$(@F).d
|
||||||
|
|
Loading…
Reference in New Issue