mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-13 18:40:03 +01:00
configure: filter out -guard:signret from armasm flags
While cl.exe supports -guard:signret, armasm64 complains about unknown flag. Note that -guard:ehcont is accepted by armasm64. Fixes: error A2029: unknown command-line argument or argument value -guard:signret Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
1
configure
vendored
1
configure
vendored
@@ -4968,6 +4968,7 @@ armasm_flags(){
|
|||||||
# Filter out MSVC cl.exe options from cflags that shouldn't
|
# Filter out MSVC cl.exe options from cflags that shouldn't
|
||||||
# be passed to gas-preprocessor
|
# be passed to gas-preprocessor
|
||||||
-M[TD]*) ;;
|
-M[TD]*) ;;
|
||||||
|
-guard:signret) ;;
|
||||||
*) echo $flag ;;
|
*) echo $flag ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user