Re: [FFmpeg-devel] [PATCH] Mark .rodata section as read only in COFF object file

2019-01-14 Thread Tom Tan
Hi Carl Eugen, Could you please review the updated patch? Thanks. From 9f20fb097b8006ad38634a943298e47884bf2696 Mon Sep 17 00:00:00 2001 From: Tom Tan Date: Thu, 10 Jan 2019 11:50:49 -0800 Subject: [PATCH] Switch .rodata section name to .rdata for COFF object file .rodata section is custom

Re: [FFmpeg-devel] [PATCH] Mark .rodata section as read only in COFF object file

2019-01-11 Thread Tom Tan
: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] Mark .rodata section as read only in COFF object file 2019-01-10 21:14 GMT+01:00, Tom Tan : > .rodata directive from GAS assembly produces .rodata as read/write for > COFF object file by default (object file form

[FFmpeg-devel] [PATCH] Mark .rodata section as read only in COFF object file

2019-01-10 Thread Tom Tan
.rodata directive from GAS assembly produces .rodata as read/write for COFF object file by default (object file format for Windows), but read only for ELF. This change marks it as read only explicitly for COFF. The issue happens when building Chromium for Windows ARM64, with FFmpeg. --- libavuti