如图,生成的.o 文件在源码同一个文件夹下了,但是其它的文件夹的源码生成的.o却是在build文件夹下。想请教一下怎么修改
这是对应该问价夹的 scons脚本
import rtconfig
from building import *
cwd = GetCurrentDir()
# add the general drivers.
src = Glob('drv_common.c')
if GetDepend(['RT_USING_PIN']):
src += Glob('drv_gpio.c')
if GetDepend(['RT_USING_SERIAL']):
if GetDepend(['RT_USING_SERIAL_V2']):
src += Glob('drv_usart_v2.c')
else:
src += Glob('drv_usart.c')
if GetDepend(['RT_USING_HWTIMER']):
src += Glob('drv_hwtimer.c')
if GetDepend(['RT_USING_PWM']):
Glob('drv_pwm.c')
if GetDepend(['RT_USING_SPI']):
src += Glob('drv_spi.c')
if GetDepend(['RT_USING_QSPI']):
Glob('drv_qspi.c')
if GetDepend(['RT_USING_I2C', 'RT_USING_I2C_BITOPS']):
if GetDepend('BSP_USING_I2C1') or GetDepend('BSP_USING_I2C2') or GetDepend('BSP_USING_I2C3') or GetDepend('BSP_USING_I2C4'):
Glob('drv_soft_i2c.c')
if GetDepend(['BSP_USING_ETH', 'RT_USING_LWIP']):
Glob('drv_eth.c')
if GetDepend(['RT_USING_ADC']):
src += Glob('drv_adc.c')
if GetDepend(['RT_USING_DAC']):
src += Glob('drv_dac.c')
if GetDepend(['RT_USING_CAN']):
src += Glob('drv_fdcan.c')
if GetDepend(['RT_USING_PM', 'SOC_SERIES_STM32L4']):
src += Glob('drv_pm.c')
src += Glob('drv_lptim.c')
if GetDepend('BSP_USING_SDRAM'):
src += Glob('drv_sdram.c')
if GetDepend('BSP_USING_LCD'):
src += Glob('drv_lcd.c')
if GetDepend('BSP_USING_LCD_MIPI'):
src += Glob('drv_lcd_mipi.c')
if GetDepend('BSP_USING_ONCHIP_RTC'):
src += Glob('drv_rtc.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32G0']):
src += Glob('drv_flash/drv_flash_g0.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32F0']):
src += Glob('drv_flash/drv_flash_f0.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32F1']):
src += Glob('drv_flash/drv_flash_f1.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32F2']):
src += Glob('drv_flash/drv_flash_f2.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32F4']):
src += Glob('drv_flash/drv_flash_f4.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32F7']):
src += Glob('drv_flash/drv_flash_f7.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32L4']):
src += Glob('drv_flash/drv_flash_l4.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32H7']):
src += Glob('drv_flash/drv_flash_h7.c')
if GetDepend(['BSP_USING_ON_CHIP_FLASH', 'SOC_SERIES_STM32WB']):
src += Glob('drv_flash/drv_flash_wb.c')
if GetDepend('RT_USING_HWCRYPTO'):
src += Glob('drv_crypto.c')
if GetDepend(['BSP_USING_WDT']):
src += Glob('drv_wdt.c')
if GetDepend(['BSP_USING_SDIO']):
src += Glob('drv_sdio.c')
if GetDepend(['BSP_USING_USBD']):
src += Glob('drv_usbd.c')
if GetDepend(['BSP_USING_PULSE_ENCODER']):
src += Glob('drv_pulse_encoder.c')
if GetDepend(['BSP_USING_USBH']):
src += Glob('drv_usbh.c')
path = [cwd]
path += [cwd + '/config']
if GetDepend('BSP_USING_ON_CHIP_FLASH'):
path += [cwd + '/drv_flash']
group = DefineGroup('Stm32Driver', src, depend = [''], CPPPATH = path)
Return('group')
Hi @myLLgf :我曾经也有这个疑问:
你可以试下在下面的代码中加入如下修改。
比如在bsp的Sconstruct的代码如下
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'drivers', 'SConscript')))
# include cmsis
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'cmsis', 'SConscript')))
修改如下:
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'drivers', 'SConscript'),variant_dir='build/drivers'))
# include cmsis
objs.extend(SConscript(os.path.join(libraries_path_prefix, 'cmsis', 'SConscript'),variant_dir='build/cmsis'))
具体的可以根据自己的bsp下面做对应的修改。这样的话,编译后的.o文件会被放到build目录下面
找了rt-thread/bsp/stm32/libraries/HAL_Drivers/SConscript比对了下,你驱动Glob
试试看?
感谢各位的帮助!根目录下的 sconstruct 文件中
# include libraries
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')))
这两行可以不要, 在 Library 文件夹里加个 sconsscript 把子文件夹的脚本自动添加 objs 就行了
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
Return('objs')
这样生成的目标文件最寻了 building.py 里的规则,都在build目录下
试了一下,对于startup.s/stratup.S依然会在库里面生成,折中的办法就是将borad/sconscript判断使用的startup语句移到库中的sconscript实现:
path = [
cwd + '/CMSIS',
cwd + '/CMSIS/WCH/CH32F10x/Include',
cwd + '/StdPeriph_Driver/inc']
if rtconfig.CROSS_TOOL == 'keil':
src += ['CMSIS/WCH/CH32F10x/Source/ARM/startup_ch32f10x.s']
if rtconfig.CROSS_TOOL == 'gcc':
src += ['CMSIS/WCH/CH32F10x/Source/GCC/startup_ch32f10x.S']
group = DefineGroup('ch32f10x_lib', src, depend = [''], CPPPATH = path)
Return('group')
这样的话就可以,我是用ch32测试的
欢迎对bsp进行PR修改,我看很多bsp都没有修改。
测试了一下,标准库和适配的rt驱动都能在build目录下生成,唯独startup那个汇编文件不行,暂时还没想到怎么处理
.s可能编译器不一样吧,如果觉得答案有帮助的话,欢迎采纳