Changeset 62721d5 in mainline for meson/arch
- Timestamp:
- 2023-10-22T16:45:25Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8f9f9b1
- Parents:
- b7493ea0
- git-author:
- Vojtech Horky <vojtech.horky@…> (2023-07-14 13:58:38)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-22 16:45:25)
- Location:
- meson/arch
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
meson/arch/arm64/meson.build
rb7493ea0 r62721d5 48 48 # -mstrict-align option is therefore not needed. 49 49 arch_boot_c_args = arch_uspace_c_args + [ '-fpic', '-fvisibility=hidden', '-fno-function-sections' ] 50 arch_boot_link_args = [ '-Wl,-shared', '-Wl,--no-gc-sections' ] 50 arch_boot_link_args = [ '-Wl,-shared', '-Wl,--no-gc-sections' ] + ldflags_ignore_rwx_segments 51 51 52 52 if MACHINE == 'virt' -
meson/arch/ia64/meson.build
rb7493ea0 r62721d5 38 38 arch_uspace_link_args = [ '-nostdlib', '-lgcc' ] 39 39 arch_kernel_link_args = [ '-nostdlib', '-Wl,-EL' ] 40 arch_boot_link_args = []40 arch_boot_link_args = ldflags_ignore_rwx_segments 41 41 42 42 -
meson/arch/ppc32/meson.build
rb7493ea0 r62721d5 37 37 arch_kernel_link_args = [ '-nostdlib', '-Wl,-z,max-page-size=0x1000', '-Wl,--no-check-sections', '-Wl,--no-gc-sections' ] 38 38 arch_uspace_link_args = [ '-nostdlib', '-lgcc', '-Wl,-z,max-page-size=0x1000' ] 39 arch_boot_link_args = [] 39 arch_uspace_link_args += ldflags_ignore_rwx_segments 40 arch_boot_link_args = ldflags_ignore_rwx_segments 40 41 41 42 rd_essential += [ -
meson/arch/riscv64/meson.build
rb7493ea0 r62721d5 33 33 arch_kernel_link_args = [ '-nostdlib' ] 34 34 arch_uspace_link_args = [ '-nostdlib', '-lgcc' ] 35 arch_boot_link_args = []35 arch_boot_link_args = ldflags_ignore_rwx_segments 36 36 37 37 rd_essential += [
Note:
See TracChangeset
for help on using the changeset viewer.