提交 6797e5a0 编写于 作者: B bernard.xiong

remove compile error if the program path has blank space.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@208 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 822b1c16
......@@ -42,7 +42,7 @@ if rtconfig.RT_USING_DFS:
src_drv += ['sdcard.c']
if rtconfig.RT_USING_LWIP:
src_drv += ['dm9000a.c']
src_drv += ['dm9000.c']
objs = objs + env.Object(src_bsp + src_drv)
......
#include <rtthread.h>
#include <netif/ethernetif.h>
#include "dm9000a.h"
#include "dm9000.h"
// #define DM9000_DEBUG 1
#if DM9000_DEBUG
......
......@@ -68,8 +68,8 @@ elif PLATFORM == 'armcc':
AFLAGS = DEVICE
LFLAGS = DEVICE + ' --info sizes --info totals --info unused --info veneers --list rtthread-mini2440.map --ro-base 0x30000000 --entry Entry_Point --first Entry_Point'
CFLAGS += ' -I' + EXEC_PATH + '/ARM/RV31/INC'
LFLAGS += ' --libpath ' + EXEC_PATH + '/ARM/RV31/LIB'
CFLAGS += ' -I"' + EXEC_PATH + '/ARM/RV31/INC"'
LFLAGS += ' --libpath "' + EXEC_PATH + '/ARM/RV31/LIB"'
EXEC_PATH += '/arm/bin40/'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册