Fixed bug 3601621.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5091 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
88b8b3eea1
commit
a82dec52e6
|
@ -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)
|
||||||
|
|
|
@ -18,6 +18,8 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "ch.h"
|
#include "ch.h"
|
||||||
#include "hal.h"
|
#include "hal.h"
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
|
|
|
@ -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)
|
||||||
|
|
|
@ -82,6 +82,8 @@
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
|
|
||||||
*** 2.5.2 ***
|
*** 2.5.2 ***
|
||||||
|
- FIX: Fixed compile errors in Posix-GCC demo (bug 3601621)(backported
|
||||||
|
to 2.4.4).
|
||||||
- FIX: Fixed state checker error in MSP430 port (bug 3601460)(backported
|
- FIX: Fixed state checker error in MSP430 port (bug 3601460)(backported
|
||||||
to 2.4.4).
|
to 2.4.4).
|
||||||
- FIX: Fixed wrong assertion in UART driver (bug 3600789)(backported
|
- FIX: Fixed wrong assertion in UART driver (bug 3600789)(backported
|
||||||
|
|
Loading…
Reference in New Issue