Fixed bug 3601621.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@5090 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
132bab8e20
commit
11d17124cb
|
@ -132,10 +132,10 @@ CPFLAGS += -MD -MP -MF .dep/$(@F).d
|
||||||
|
|
||||||
all: $(OBJS) $(PROJECT)
|
all: $(OBJS) $(PROJECT)
|
||||||
|
|
||||||
%o : %c
|
%.o : %.c
|
||||||
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
|
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
|
||||||
|
|
||||||
%o : %s
|
%.o : %.s
|
||||||
$(AS) -c $(ASFLAGS) $< -o $@
|
$(AS) -c $(ASFLAGS) $< -o $@
|
||||||
|
|
||||||
$(PROJECT): $(OBJS)
|
$(PROJECT): $(OBJS)
|
||||||
|
|
|
@ -117,10 +117,10 @@ CPFLAGS += -MD -MP -MF .dep/$(@F).d
|
||||||
|
|
||||||
all: $(OBJS) $(PROJECT).exe
|
all: $(OBJS) $(PROJECT).exe
|
||||||
|
|
||||||
%o : %c
|
%.o : %.c
|
||||||
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
|
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
|
||||||
|
|
||||||
%o : %s
|
%.o : %.s
|
||||||
$(AS) -c $(ASFLAGS) $< -o $@
|
$(AS) -c $(ASFLAGS) $< -o $@
|
||||||
|
|
||||||
%exe: $(OBJS)
|
%exe: $(OBJS)
|
||||||
|
|
|
@ -79,6 +79,7 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.4.4 ***
|
*** 2.4.4 ***
|
||||||
|
- FIX: Fixed compile errors in Posix-GCC demo (bug 3601621).
|
||||||
- FIX: Fixed state checker error in MSP430 port (bug 3601460).
|
- FIX: Fixed state checker error in MSP430 port (bug 3601460).
|
||||||
- FIX: Fixed wrong assertion in UART driver (bug 3600789).
|
- FIX: Fixed wrong assertion in UART driver (bug 3600789).
|
||||||
- FIX: Fixed small bug in shell argument parsing code in shell_thread (bug
|
- FIX: Fixed small bug in shell argument parsing code in shell_thread (bug
|
||||||
|
|
Loading…
Reference in New Issue