From b7438b430bf0787165ad36105913b342c3974607 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 3 Apr 2017 22:31:05 +0200 Subject: [PATCH] Configure: recognize -framework as linker option [on Apple OSes]. This is handy for internal iOS tests, when you have to make it work in sandbox. Reviewed-by: Richard Levitte --- Configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Configure b/Configure index 617ee52cac..66541be41d 100755 --- a/Configure +++ b/Configure @@ -743,6 +743,10 @@ while (@argvcopy) { $libs.=$_." "; } + elsif (/^-framework$/) + { + $libs.=$_." ".shift(@argvcopy)." "; + } elsif (/^-rpath$/ or /^-R$/) # -rpath is the OSF1 rpath flag # -R is the old Solaris rpath flag -- 2.25.1