Changes in meson/arch/ppc32/meson.build [c89ae25:581a54a] in mainline
- File:
-
- 1 edited
-
meson/arch/ppc32/meson.build (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/ppc32/meson.build
rc89ae25 r581a54a 1 1 # 2 # Copyright (c) 202 3Jiri Svoboda2 # Copyright (c) 2021 Jiri Svoboda 3 3 # Copyright (c) 2019 Jiří Zárevúcky 4 4 # All rights reserved. … … 28 28 # 29 29 30 # FIXME: enable --gc-sections 31 30 32 _common_c_args = [ '-D__BE__', '-fno-omit-frame-pointer', '-m32', '-Wa,-a32', '-mcpu=powerpc' ] 31 33 32 arch_kernel_c_args = _common_c_args + [ '-msoft-float' ]34 arch_kernel_c_args = _common_c_args + [ '-msoft-float', '-fno-function-sections' ] 33 35 arch_uspace_c_args = _common_c_args + [ CONFIG_FPU ? '-mhard-float' : '-msoft-float' ] 34 36 arch_boot_c_args = arch_kernel_c_args 35 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000' ]37 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000', '-Wl,--no-check-sections', '-Wl,--no-gc-sections' ] 36 38 arch_uspace_link_args = [ '-nostdlib', '-lgcc', '-Wl,-z,max-page-size=0x1000' ] 37 arch_uspace_link_args += ldflags_ignore_rwx_segments 38 arch_boot_link_args = ldflags_ignore_rwx_segments 39 arch_boot_link_args = [] 39 40 40 rd_essential += [41 'app/ofw'42 ]43 41 44 42 rd_essential_drv += [
Note:
See TracChangeset
for help on using the changeset viewer.
