mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
configure: fix NASM output format on Win64
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
454c019cb5
commit
60a06400a9
7
configure
vendored
7
configure
vendored
@ -4467,7 +4467,12 @@ EOF
|
||||
elif check_cmd nasm -v; then
|
||||
yasmexe=nasm
|
||||
yasm_debug="-g -F dwarf"
|
||||
enabled x86_64 && test "$objformat" = elf && objformat=elf64
|
||||
if enabled x86_64; then
|
||||
case "$objformat" in
|
||||
elf) objformat=elf64 ;;
|
||||
win32) objformat=win64 ;;
|
||||
esac
|
||||
fi
|
||||
fi
|
||||
|
||||
YASMFLAGS="-f $objformat $yasm_extra"
|
||||
|
Loading…
Reference in New Issue
Block a user