mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-23 17:48:27 +08:00
Revert "优化build输出" (#5747)
This commit is contained in:
@@ -41,9 +41,6 @@ if os.path.exists(SDK_ROOT + '/libraries'):
|
||||
else:
|
||||
libraries_path_prefix = os.path.dirname(SDK_ROOT) + '/libraries'
|
||||
|
||||
from utils import _make_path_relative
|
||||
libraries_path_prefix = _make_path_relative(os.path.abspath('./'), libraries_path_prefix)
|
||||
|
||||
SDK_LIB = libraries_path_prefix
|
||||
Export('SDK_LIB')
|
||||
|
||||
@@ -53,19 +50,11 @@ objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
|
||||
stm32_library = 'STM32G0xx_HAL'
|
||||
rtconfig.BSP_LIBRARY_TYPE = stm32_library
|
||||
|
||||
bsp_vdir = 'build'
|
||||
|
||||
# include libraries
|
||||
objs.extend(SConscript(os.path.join(libraries_path_prefix, stm32_library, 'SConscript'),
|
||||
variant_dir=bsp_vdir + '/libraries/'+ stm32_library, duplicate=0))
|
||||
objs.extend(SConscript(os.path.join(libraries_path_prefix, stm32_library, 'SConscript')))
|
||||
|
||||
# include drivers
|
||||
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'HAL_Drivers', 'SConscript'),
|
||||
variant_dir=bsp_vdir + '/libraries/HAL_Drivers', duplicate=0))
|
||||
|
||||
bsp_port_script = os.path.join(os.getcwd(), 'board', 'ports', 'SConscript')
|
||||
if os.path.isfile(bsp_port_script):
|
||||
objs.extend(SConscript(bsp_port_script, variant_dir=bsp_vdir + '/board/ports', duplicate=0))
|
||||
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'HAL_Drivers', 'SConscript')))
|
||||
|
||||
# make a building
|
||||
DoBuilding(TARGET, objs)
|
||||
|
||||
Reference in New Issue
Block a user