Browse Source

Merge pull request #1656 from liangyongxiang/ck802-release

[bsp][ck802] clean up
Bernard Xiong 6 năm trước cách đây
mục cha
commit
e016958a73
2 tập tin đã thay đổi với 5 bổ sung7 xóa
  1. 4 6
      bsp/ck802/SConstruct
  2. 1 1
      bsp/ck802/rtconfig.py

+ 4 - 6
bsp/ck802/SConstruct

@@ -2,12 +2,10 @@ import os
 import sys
 import rtconfig
 
-# if os.getenv('RTT_ROOT'):
-    # RTT_ROOT = os.getenv('RTT_ROOT')
-# else:
-RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
-
-print RTT_ROOT
+if os.getenv('RTT_ROOT'):
+    RTT_ROOT = os.getenv('RTT_ROOT')
+else:
+    RTT_ROOT = os.path.normpath(os.getcwd() + '/../..')
 
 sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
 from building import *

+ 1 - 1
bsp/ck802/rtconfig.py

@@ -40,7 +40,7 @@ if PLATFORM == 'gcc':
         DEVICE = ' -mcpu=ck802'
 
     CFLAGS  = DEVICE + '  -DCONFIG_CPU_CK802 -c -g -ffunction-sections -Wall -mistack -mlittle-endian'
-    AFLAGS  = ' -c' + DEVICE + ' -EL -x assembler-with-cpp -save-temps=ojb'
+    AFLAGS  = ' -c' + DEVICE + ' -EL -x assembler-with-cpp'
     LFLAGS  = DEVICE + ' -EL -Wl,--gc-sections,-Map=rtthread_ck802.map,-cref,-u,Reset_Handler -T gcc_csky.ld'
     CPATH   = ''
     LPATH   = ''