mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-04-18 00:20:21 +00:00
The use of code section (.text) was forced by the unreleased NASM 3.02rc3 which made the issue worse, but preventing assambling anything without code section, including when only data was present. This works fine for the most part, but using code (.text) section with IMAGE_COMDAT_SELECT_ANY causes issues with lib.exe after stripping such object: fatal error LNK1143: invalid or corrupt file: no symbol for COMDAT section 0x2 Esentially it makes our workaround not work in all cases, and while string could be disabled like it already is for MSVC/ICL builds, it used to work so let's preserve that state. This make it not compatible with NASM 3.02rc3 when CV debug info is generated, but hopefully the upstream fix will be merged before release, to avoid this regression: https://github.com/netwide-assembler/nasm/pull/221 Signed-off-by: Kacper Michajłow <kasper93@gmail.com> |
||
|---|---|---|
| .. | ||
| aes.asm | ||
| aes_init.c | ||
| asm.h | ||
| bswap.h | ||
| cpu.c | ||
| cpu.h | ||
| cpuid.asm | ||
| crc.asm | ||
| crc.h | ||
| emms.asm | ||
| fixed_dsp.asm | ||
| fixed_dsp_init.c | ||
| float_dsp.asm | ||
| float_dsp_init.c | ||
| imgutils.asm | ||
| imgutils_init.c | ||
| intmath.h | ||
| intreadwrite.h | ||
| lls.asm | ||
| lls_init.c | ||
| Makefile | ||
| pixelutils.asm | ||
| pixelutils.h | ||
| timer.h | ||
| tx_float.asm | ||
| tx_float_init.c | ||
| w64xmmtest.h | ||
| x86inc.asm | ||
| x86util.asm | ||