This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
configure: fix NASM output format on Win64
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
James Almer
Michael Niedermayer
11 years ago
parent
454c019cb5
commit
60a06400a9
1 changed files
with
6 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-1
configure
+ 6
- 1
configure
View File
@@ -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"
Write
Preview
Loading…
Cancel
Save