From 7533abbd04e90aa127ebdbc2b4c382793e7dc526 Mon Sep 17 00:00:00 2001 From: Jeff Hostetler Date: Wed, 3 Jun 2020 14:37:42 -0400 Subject: [PATCH] clink.pl: pass -E in CFLAGS thru to the compiler Signed-off-by: Jeff Hostetler --- compat/vcbuild/scripts/clink.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/vcbuild/scripts/clink.pl b/compat/vcbuild/scripts/clink.pl index d6959a8441d794..d8ade009d3d344 100755 --- a/compat/vcbuild/scripts/clink.pl +++ b/compat/vcbuild/scripts/clink.pl @@ -23,7 +23,7 @@ # before any "-l*" flags. $is_debug = 1; } - if ("$arg" =~ /^-[DIMGOZ]/) { + if ("$arg" =~ /^-[DEIMGOZ]/) { push(@cflags, $arg); } elsif ("$arg" eq "-o") { my $file_out = shift @ARGV;