Page MenuHomeFreeBSD

stand/i386: rename .s to .S to use Clang IAS
ClosedPublic

Authored by emaste on Nov 28 2018, 3:55 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Dec 8, 10:46 AM
Unknown Object (File)
Sun, Dec 8, 10:45 AM
Unknown Object (File)
Sun, Dec 8, 10:45 AM
Unknown Object (File)
Fri, Dec 6, 2:05 PM
Unknown Object (File)
Fri, Dec 6, 7:49 AM
Unknown Object (File)
Oct 7 2024, 2:13 AM
Unknown Object (File)
Oct 4 2024, 3:59 AM
Unknown Object (File)
Oct 3 2024, 12:02 PM
Subscribers
None

Details

Summary

As part of the migration away from obsolete binutils we want to retire GNU as. Most assembly files used on amd64 have a .S extension and (via rules in share/mk/bsd.suffixes.mk) are assembled with Clang's Integrated Assembler (IAS). Rename files in stand/i386 to .S to use the integrated assembler.

Clang's IAS supports the defsym option (via -Wa,) but only with one dash, not two. As both -defsym and --defsym are accepted by GNU as, use the former.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Dec 3 2018, 7:05 PM
This revision was automatically updated to reflect the committed changes.

I looked at this on my phone a few days ago and meant to stamp it with LGTM when I got back to my computer, but that fell through the cracks.

In D18369#392138, @imp wrote:

I looked at this on my phone a few days ago and meant to stamp it with LGTM when I got back to my computer, but that fell through the cracks.

OK, thanks for the followup!

On amd64 there's one more change ready to go in D18344, then just skein_block_asm.s to deal with.