diff options
author | Janne Grunau <janne-libav@jannau.net> | 2014-05-29 17:04:57 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-06-09 12:33:19 +0200 |
commit | 7b06ddb8352fe7f434414d7911ced94956bb25b2 (patch) | |
tree | 688f3c11f5fc2054cdb34943a1edf70a98d4a774 | |
parent | 3d79d0c93e5b37a35b1b22d6c18699c233aad1ba (diff) | |
download | ffmpeg-7b06ddb8352fe7f434414d7911ced94956bb25b2.tar.gz |
configure: use .altmacro for gnu as check on arm
Clang's integrated assembler (after 3.4) does not yet support the
'.altmacro' directive which is only used in arm asm. Support is planned:
http://llvm.org/bugs/show_bug.cgi?id=18918
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3736,6 +3736,10 @@ if enabled asm; then m x EOF + check_as <<EOF || $nogas "GNU assembler not found, install gas-preprocessor" +.altmacro +EOF + check_as <<EOF && enable as_func .func test .endfunc |