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)
Tue, Jul 21, 11:23 AM
Unknown Object (File)
Mon, Jul 20, 8:10 AM
Unknown Object (File)
Sat, Jul 18, 6:08 PM
Unknown Object (File)
Sat, Jul 4, 12:53 PM
Unknown Object (File)
Fri, Jul 3, 12:05 PM
Unknown Object (File)
May 25 2026, 5:41 PM
Unknown Object (File)
May 23 2026, 11:15 PM
Unknown Object (File)
May 22 2026, 4:21 PM
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?