@@ -61,9 +61,9 @@ def __init__(self, target, notify=None, macros=None,
61
61
62
62
self .flags ['common' ] += ["--cpu=%s" % cpu ]
63
63
64
- self .asm = [main_cc ] + self .flags ['common' ] + self .flags ['asm' ] + [ "-I \" " + ARM_INC + " \" " ]
65
- self .cc = [main_cc ] + self .flags ['common' ] + self .flags ['c' ] + [ "-I \" " + ARM_INC + " \" " ]
66
- self .cppc = [main_cc ] + self .flags ['common' ] + self .flags ['c' ] + self .flags ['cxx' ] + [ "-I \" " + ARM_INC + " \" " ]
64
+ self .asm = [main_cc ] + self .flags ['common' ] + self .flags ['asm' ]
65
+ self .cc = [main_cc ] + self .flags ['common' ] + self .flags ['c' ]
66
+ self .cppc = [main_cc ] + self .flags ['common' ] + self .flags ['c' ] + self .flags ['cxx' ]
67
67
68
68
self .ld = [join (ARM_BIN , "armlink" )]
69
69
self .sys_libs = []
@@ -223,22 +223,8 @@ def binary(self, resources, elf, bin):
223
223
224
224
225
225
class ARM_STD (ARM ):
226
- def __init__ (self , target , notify = None , macros = None ,
227
- silent = False , extra_verbose = False , build_profile = None ):
228
- ARM .__init__ (self , target , notify , macros , silent ,
229
- extra_verbose = extra_verbose , build_profile = build_profile )
230
-
231
- # Run-time values
232
- self .ld .extend (["--libpath" , join (TOOLCHAIN_PATHS ['ARM' ], "lib" )])
226
+ pass
233
227
234
228
235
229
class ARM_MICRO (ARM ):
236
230
PATCHED_LIBRARY = False
237
-
238
- def __init__ (self , target , notify = None , macros = None ,
239
- silent = False , extra_verbose = False , build_profile = None ):
240
- ARM .__init__ (self , target , notify , macros , silent ,
241
- extra_verbose = extra_verbose , build_profile = build_profile )
242
-
243
- # Run-time values
244
- self .ld .extend (["--libpath" , join (TOOLCHAIN_PATHS ['ARM' ], "lib" )])
0 commit comments