Diego Biurrun <[email protected]> writes: > --- > configure | 5 ++++- > 1 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/configure b/configure > index 515620c..1287dc4 100755 > --- a/configure > +++ b/configure > @@ -207,16 +207,18 @@ Advanced options (experts only): > --ar=AR use archive tool AR [$ar_default] > --as=AS use assembler AS [$as_default] > --cc=CC use C compiler CC [$cc_default] > + --dep-cc=DEPCC use dependency generator DEPCC [$cc_default]
DEPCC is only used if CC can't generate dependencies while compiling. Don't know if it's worth mentioning here. > --ld=LD use linker LD > --host-cc=HOSTCC use host C compiler HOSTCC > --host-cflags=HCFLAGS use HCFLAGS when compiling for host > --host-ldflags=HLDFLAGS use HLDFLAGS when linking for host > --host-libs=HLIBS use libs HLIBS when linking for host > + --host-os=OS compiler host OS [$target_os] > --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS] > --extra-ldflags=ELDFLAGS add ELDFLAGS to LDFLAGS [$LDFLAGS] > --extra-libs=ELIBS add ELIBS [$ELIBS] > --extra-version=STRING version string suffix [] > - --optflags override optimization-related compiler flags > + --optflags=OPTFLAGS override optimization-related compiler flags > --build-suffix=SUFFIX library name suffix [] > --malloc-prefix=PREFIX prefix malloc and related names with PREFIX > --arch=ARCH select architecture [$arch] > @@ -248,6 +250,7 @@ Optimization options (experts only): > --disable-armvfp disable ARM VFP optimizations > --disable-mmi disable MMI optimizations > --disable-neon disable NEON optimizations > + --disable-thumb disable Thumb optimizations Wrong description. --enable/disable-thumb only changes the type of code generated. All optimisations work in both ARM and Thumb mode. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
