Changes in meson/arch/ppc32/meson.build [c21d4d6:3fcea34] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/ppc32/meson.build
rc21d4d6 r3fcea34 1 1 # 2 # Copyright (c) 2023 Jiri Svoboda 2 3 # Copyright (c) 2019 Jiří Zárevúcky 3 4 # All rights reserved. … … 27 28 # 28 29 29 # FIXME: enable --gc-sections30 31 30 _common_c_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-m32', '-Wa,-a32', '-mcpu=powerpc' ] 32 31 33 arch_kernel_c_args = _common_c_args + [ '-msoft-float' , '-fno-function-sections']32 arch_kernel_c_args = _common_c_args + [ '-msoft-float' ] 34 33 arch_uspace_c_args = _common_c_args + [ CONFIG_FPU ? '-mhard-float' : '-msoft-float' ] 35 34 arch_boot_c_args = arch_kernel_c_args 36 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000' , '-Wl,--no-check-sections', '-Wl,--no-gc-sections']35 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000' ] 37 36 arch_uspace_link_args = [ '-nostdlib', '-lgcc', '-Wl,-z,max-page-size=0x1000' ] 38 arch_boot_link_args = [] 39 37 arch_boot_link_args = ldflags_ignore_rwx_segments 40 38 41 39 rd_essential += [ 40 'app/ofw' 41 ] 42 43 rd_essential_drv += [ 42 44 'drv/platform/mac', 43 45 'drv/bus/adb/cuda_adb', … … 54 56 'drv/hid/usbhid', 55 57 ] 58 59 rd_drv += rd_essential_drv
Note:
See TracChangeset
for help on using the changeset viewer.