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)
Mon, May 25, 5:41 PM
Unknown Object (File)
May 23 2026, 11:15 PM
Unknown Object (File)
May 22 2026, 4:21 PM
Unknown Object (File)
May 22 2026, 4:21 PM
Unknown Object (File)
May 17 2026, 3:46 AM
Unknown Object (File)
May 17 2026, 3:44 AM
Unknown Object (File)
Apr 29 2026, 1:01 PM
Unknown Object (File)
Apr 29 2026, 10:21 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?