FreeBSD/src 1dffcf9 (r346582)usr.bin/ar write.c

ar: shuffle symbol offsets during conversion for 32-bit ar archives

During processing we maintain symbol offsets in the 64-bit s_so array,
and when writing the archive convert to 32-bit if no offsets are greater
than 4GB.  However, this was somewhat inefficient as we looped over the
array twice: first, converting to big endian and second, writing each
32-bit value one at a time (and incorrectly so on big-endian platforms).

Instead, when writing a 32-bit archive shuffle convert symbol data to
big endian (as required by the ar format) and shuffle to the beginning
of the allocation at the same time.

Also correct emission of the symbol count on big endian platforms.

Further changes are planned, but this should fix powerpc64.

Reported by:    jhibbits, mlinimon
Reviewed by:    jhibbits, Gerald Aryeetey (earlier)
Tested by:      jhibbits
MFC after:      10 days
MFC with:       r346079
Sponsored by:   The FreeBSD Foundation
Differential Revision:  https://reviews.freebsd.org/D20007
DeltaFile
+18-19usr.bin/ar/write.c
+18-191 files

UnifiedSplitRaw