Hi, trying to assemble some yasm sources with nasm -f aout I see errors like
YASM libavcodec/x86/dsputil_yasm.o
/usr/src/ffmpeg/libavcodec/x86/dsputil_yasm.asm:31: error: segment name `.text align=16' not recognized
make: *** [libavcodec/x86/dsputil_yasm.o] Error 1
Changing the code to
.text
align 16
allows assembly to finish
or using nasm -f obj doesn't require any changes.
Is align=16 valid syntax? The documentation implies that align 16 is correct
And is this a bug?