mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-26 09:12:33 +00:00
x86inc: Use .rdata instead of .rodata on Windows
The standard section for read-only data on Windows is .rdata. Nasm will flag non-standard sections as executable by default which isn't ideal.
This commit is contained in:
parent
3a02cbe3fa
commit
9e4b3675f2
@ -90,6 +90,10 @@
|
||||
SECTION .text
|
||||
%elifidn __OUTPUT_FORMAT__,coff
|
||||
SECTION .text
|
||||
%elifidn __OUTPUT_FORMAT__,win32
|
||||
SECTION .rdata align=%1
|
||||
%elif WIN64
|
||||
SECTION .rdata align=%1
|
||||
%else
|
||||
SECTION .rodata align=%1
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user