The branch, master has been updated
via 9b2162275b52e4d9558de18b0f58096e1ce0347c (commit)
from 523d688c2b7d5bb535bc203a2c3705d199ddf13d (commit)
- Log -----------------------------------------------------------------
commit 9b2162275b52e4d9558de18b0f58096e1ce0347c
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Mon Nov 17 21:20:16 2025 +0100
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Mon Nov 17 20:41:34 2025 +0000
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 <[email protected]>
diff --git a/configure b/configure
index 441bdc9373..e2caf3b24c 100755
--- a/configure
+++ b/configure
@@ -4968,6 +4968,7 @@ armasm_flags(){
# Filter out MSVC cl.exe options from cflags that shouldn't
# be passed to gas-preprocessor
-M[TD]*) ;;
+ -guard:signret) ;;
*) echo $flag ;;
esac
done
-----------------------------------------------------------------------
Summary of changes:
configure | 1 +
1 file changed, 1 insertion(+)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]