From d719e60cb40448ae6de4407ac7f2c25644eb1120 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Fri, 16 Dec 2005 11:29:19 +0000 Subject: [PATCH] Allow for warning-free passing of -Wl options on config command line. One possible usage is to pass -Wl,-z,-noexecstack on Linux to ensure the stack is marked non-executable. Well, -Wa,--noexecstack works fine too... --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index aa818ac053..ac532bcdb2 100755 --- a/Configure +++ b/Configure @@ -724,7 +724,7 @@ PROCESS_ARGS: } elsif (/^[-+]/) { - if (/^-[lL](.*)$/) + if (/^-[lL](.*)$/ or /^-Wl,/) { $libs.=$_." "; } -- 2.25.1