Page MenuHomeFreeBSD

usr.bin/elf2aout build warning fix
Needs ReviewPublic

Authored by aprieger_llnw.com on Jun 5 2017, 8:18 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Sep 25, 5:47 PM
Unknown Object (File)
Sat, Sep 20, 8:03 PM
Unknown Object (File)
Jul 26 2025, 6:29 PM
Unknown Object (File)
Jul 5 2025, 9:58 PM
Unknown Object (File)
Jun 28 2025, 10:13 AM
Unknown Object (File)
Jun 28 2025, 3:59 AM
Unknown Object (File)
Jun 27 2025, 5:47 AM
Unknown Object (File)
Jun 21 2025, 8:12 AM
Subscribers
None

Details

Summary

usr.bin/elf2aout (Convert ELF binary to a.out format) build warning fix

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 9685
Build 10125: arc lint + arc unit

Event Timeline

Changelog:
Pre-fix warnings are at: https://gist.github.com/aprieger-llnw/ec32a64f35be3e4f0d250da53310ea27

  1. usr.bin/elf2aout/elf2aout.c
    • Warnings:
      • warning: cast from 'char *' to 'Elf64_Phdr *' increases required alignment from 1 to 8 [-Wcast-align]
    • Fixes:
      • added the explicit modifier "void *" to the casting in order to force the alignment

@emaste Is this "ok" to commit or is this masking something else going on?