You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
build: Support selecting yasm-compatible assembler
Makes it possible to select the name/path of the tool for compiling the non-inline assembly code. Signed-off-by: Alexander Strasser <eclipse7@gmx.net> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
234405315f
commit
72b33eade1
6
configure
vendored
6
configure
vendored
@@ -221,6 +221,7 @@ Advanced options (experts only):
|
|||||||
--nm=NM use nm tool
|
--nm=NM use nm tool
|
||||||
--ar=AR use archive tool AR [$ar_default]
|
--ar=AR use archive tool AR [$ar_default]
|
||||||
--as=AS use assembler AS [$as_default]
|
--as=AS use assembler AS [$as_default]
|
||||||
|
--yasmexe=EXE use yasm-compatible assembler EXE [$yasmexe_default]
|
||||||
--cc=CC use C compiler CC [$cc_default]
|
--cc=CC use C compiler CC [$cc_default]
|
||||||
--cxx=CXX use C compiler CXX [$cxx_default]
|
--cxx=CXX use C compiler CXX [$cxx_default]
|
||||||
--ld=LD use linker LD
|
--ld=LD use linker LD
|
||||||
@@ -1319,6 +1320,7 @@ CMDLINE_SET="
|
|||||||
target_os
|
target_os
|
||||||
target_path
|
target_path
|
||||||
valgrind
|
valgrind
|
||||||
|
yasmexe
|
||||||
"
|
"
|
||||||
|
|
||||||
CMDLINE_APPEND="
|
CMDLINE_APPEND="
|
||||||
@@ -1800,7 +1802,7 @@ objformat="elf"
|
|||||||
pkg_config_default=pkg-config
|
pkg_config_default=pkg-config
|
||||||
ranlib="ranlib"
|
ranlib="ranlib"
|
||||||
strip_default="strip"
|
strip_default="strip"
|
||||||
yasmexe="yasm"
|
yasmexe_default="yasm"
|
||||||
|
|
||||||
nm_opts='-g'
|
nm_opts='-g'
|
||||||
nogas=":"
|
nogas=":"
|
||||||
@@ -2031,7 +2033,7 @@ strip_default="${cross_prefix}${strip_default}"
|
|||||||
|
|
||||||
sysinclude_default="${sysroot}/usr/include"
|
sysinclude_default="${sysroot}/usr/include"
|
||||||
|
|
||||||
set_default cc cxx nm pkg_config strip sysinclude
|
set_default cc cxx nm pkg_config strip sysinclude yasmexe
|
||||||
enabled cross_compile || host_cc_default=$cc
|
enabled cross_compile || host_cc_default=$cc
|
||||||
set_default host_cc
|
set_default host_cc
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user