[FFmpeg-cvslog] x86inc: don't use read-only data sections on COFF targets
James Almer
git at videolan.org
Tue Jun 27 18:49:09 EEST 2017
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Mon Jun 26 00:29:16 2017 -0300| [4d62ee674699645c7b7105213e7d339665144069] | committer: James Almer
x86inc: don't use read-only data sections on COFF targets
Yasm:
src/libavfilter/x86/af_volume.asm:24: warning: Standard COFF does not support read-only data sections
src/libavfilter/x86/af_volume.asm:24: warning: Unrecognized qualifier `align'
Nasm:
src/libavfilter/x86/af_volume.asm:24: error: standard COFF does not support section alignment specification
src/libavutil/x86/x86inc.asm:92: ... from macro `SECTION_RODATA' defined here
Tested-by: Clément Bœsch <u at pkh.me>
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4d62ee674699645c7b7105213e7d339665144069
---
libavutil/x86/x86inc.asm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavutil/x86/x86inc.asm b/libavutil/x86/x86inc.asm
index fa826e6d85..c4ec29bd9d 100644
--- a/libavutil/x86/x86inc.asm
+++ b/libavutil/x86/x86inc.asm
@@ -88,6 +88,8 @@
%macro SECTION_RODATA 0-1 16
%ifidn __OUTPUT_FORMAT__,aout
section .text
+ %elifidn __OUTPUT_FORMAT__,coff
+ section .text
%else
SECTION .rodata align=%1
%endif
More information about the ffmpeg-cvslog
mailing list