- Oct 15, 2012
-
-
Mans Rullgard authored
Use the existing filter functions instead of open-coding the separation of general flags and libraries. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
awk alone can do this, no need for grep. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Luca Barbato authored
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 13, 2012
-
-
Mans Rullgard authored
The glibc definitions of INFINITY and NAN do not work with the tms470 compiler, nor do our usual fallbacks. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Apply flags to work around glibc quirks only if glibc is detected, and add a few more such flags. Do not mess with as/ld settings in probe_cc. This is not the proper place. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
No special setup is required for Minix. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
The ash 'test' builtin misbehaves if the first operand of a binary operator looks like a unary operator. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 12, 2012
-
-
Mans Rullgard authored
Solaris defaults to non-standard utilities (grep, sed, ...) with proper ones being in /usr/xpg4/bin. Prefixing PATH with this directory when it exists ensures we get correct variants. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
The code fails to compile and is broken beyond repair.
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 11, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Oct 09, 2012
-
-
Diego Biurrun authored
This was done to work around toolchain bugs that have long been fixed.
-
- Oct 08, 2012
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Enable dead store elimination. The last few releases work no worse with this flag than without. Older versions failed to build some source files when using this flag. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 05, 2012
-
-
Mans Rullgard authored
With all the VLAs gone, make sure they never come back. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Oct 04, 2012
-
-
Diego Biurrun authored
Now that there is CPU detection in YASM, there will always be one of inline or external assembly enabled, which obviates the need to fall back on CPU detection through compiler intrinsics.
-
Mans Rullgard authored
This works with gcc. Other compilers might need to have a flag mapping added. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
A new hidden config variable is added for the codecs that depend on the mpegaudio parts.
-
- Oct 03, 2012
-
-
Diego Biurrun authored
-
- Oct 01, 2012
-
-
Derek Buitenhuis authored
It should be vfw32.lib with MSVC. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Nathan Caldwell authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- Sep 28, 2012
-
-
Nicolas George authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- Sep 20, 2012
-
-
Mans Rullgard authored
v5.0 of the TI ARM compiler changes the version string. This updates the detection to check for both the old and the new strings. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Sep 19, 2012
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This adds support for the TI and Microsoft (lib.exe) variants of the ar utility. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Sep 18, 2012
-
-
Mans Rullgard authored
This allows creating canned shorthands for common combinations of cc, ld etc. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
Martin Storsjö authored
This doesn't fix any build failure, but the smoothstreaming muxer opens a chained ismv muxer. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Sep 17, 2012
-
-
Mans Rullgard authored
This simplifies ensuring proper flags are used when the default is overridden by the system or on the command line. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Sep 14, 2012
-
-
Mans Rullgard authored
Some compilers are extra strict about register usage in main(), disallowing ebp in inline asm there while allowing it elsewhere. This change makes the test better reflect actual usage. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Sep 13, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Sep 11, 2012
-
-
Martin Storsjö authored
On 64 bit, the stack seems to be aligned enough for our needs. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
-
- Sep 10, 2012
-
-
Martin Storsjö authored
The 64 bit cl.exe version 16.00.30319.01 crashes with an internal compiler error on the current check (and thus deduces it isn't supported, even if the actual usage in libavuil/x86/cpu.c works fine), but by assigning the value from the intrinsic to a variable, or returning it, it works fine. This error is fixed in cl.exe version 16.00.40219.01. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Diego Biurrun authored
This can come in handy for testing and possibly other purposes.
-
Martin Storsjö authored
Some msvcrt versions (the static 64 bit libc in MSVC 10) have a log2 function, but there is no declaration for it in the headers. Therefore, the normal configure check might find it, but it can fail during build or at runtime, depending on whether implicit function declarations are an error or not. Therefore simply ignore this function on this platform. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Sep 08, 2012
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Sep 06, 2012
-
-
Martin Storsjö authored
The default ones work, but outputs the preprocessed file on stdout (into config.log). Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Sep 05, 2012
-
-
Martin Storsjö authored
This disables the following warnings: C4100: unreferenced formal parameter (1035 occurrances) C4214: nonstandard extension used : bit field types other than int (609 occurances) C4996: 'avpriv_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. (351 occurrances) Signed-off-by:
Martin Storsjö <martin@martin.st>
-