File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
1111from building import *
1212
1313TARGET = 'rtthread.' + rtconfig .TARGET_EXT
14- rtconfig .AFLAGS += ' -I' + str ('.' ) + ' -I ' + RTT_ROOT + '/libcpu/mips/common/'
1514
1615DefaultEnvironment (tools = [])
1716env = Environment (tools = ['mingw' ],
@@ -20,6 +19,7 @@ env = Environment(tools = ['mingw'],
2019 AR = rtconfig .AR , ARFLAGS = '-rc' ,
2120 LINK = rtconfig .LINK , LINKFLAGS = rtconfig .LFLAGS )
2221env .PrependENVPath ('PATH' , rtconfig .EXEC_PATH )
22+ env ['ASCOM' ] = env ['ASPPCOM' ]
2323
2424Export ('RTT_ROOT' )
2525Export ('rtconfig' )
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ from building import *
1212
1313TARGET = 'rtthread.' + rtconfig .TARGET_EXT
1414
15- rtconfig .AFLAGS += ' -I' + str ('.' ) + ' -I ' + RTT_ROOT + '/libcpu/mips/gs232/' + ' -I ' + RTT_ROOT + '/libcpu/mips/common/'
1615
1716DefaultEnvironment (tools = [])
1817env = Environment (tools = ['mingw' ],
@@ -21,6 +20,7 @@ env = Environment(tools = ['mingw'],
2120 AR = rtconfig .AR , ARFLAGS = '-rc' ,
2221 LINK = rtconfig .LINK , LINKFLAGS = rtconfig .LFLAGS )
2322env .PrependENVPath ('PATH' , rtconfig .EXEC_PATH )
23+ env ['ASCOM' ] = env ['ASPPCOM' ]
2424
2525Export ('RTT_ROOT' )
2626Export ('rtconfig' )
Original file line number Diff line number Diff line change 11import os
22import sys
33import rtconfig
4- import pdb
54
65from rtconfig import RTT_ROOT
76
@@ -10,9 +9,6 @@ from building import *
109
1110TARGET = 'rtthread.' + rtconfig .TARGET_EXT
1211
13- #rtconfig.AFLAGS += ' -I' + str(Dir('#')) + ' -I ' + RTT_ROOT + '/libcpu/mips/common/'
14- rtconfig .AFLAGS += ' -I' + str ('.' ) + ' -I ' + RTT_ROOT + '/libcpu/mips/common/'
15-
1612DefaultEnvironment (tools = [])
1713env = Environment (tools = ['mingw' ],
1814 AS = rtconfig .AS , ASFLAGS = rtconfig .AFLAGS ,
@@ -21,6 +17,7 @@ env = Environment(tools = ['mingw'],
2117 AR = rtconfig .AR , ARFLAGS = '-rc' ,
2218 LINK = rtconfig .LINK , LINKFLAGS = rtconfig .LFLAGS )
2319env .PrependENVPath ('PATH' , rtconfig .EXEC_PATH )
20+ env ['ASCOM' ] = env ['ASPPCOM' ]
2421
2522Export ('RTT_ROOT' )
2623Export ('rtconfig' )
You can’t perform that action at this time.
0 commit comments