diff options
author | Fred Hornsey <hornseyf@objectcomputing.com> | 2020-02-04 15:26:59 -0600 |
---|---|---|
committer | Fred Hornsey <hornseyf@objectcomputing.com> | 2020-02-04 15:26:59 -0600 |
commit | b810cc85ddbcac1a066e4036a441a57712e822f0 (patch) | |
tree | 8951d691e8184f969f4b6e0e57a0654f90b0bfad /ACE | |
parent | 977c354addc03b848b47c392658dfc00338bf1cb (diff) | |
download | ATCD-b810cc85ddbcac1a066e4036a441a57712e822f0.tar.gz |
platform_clang_common.GNU: Remove Alt GNU ld Check
Diffstat (limited to 'ACE')
-rw-r--r-- | ACE/include/makeinclude/platform_clang_common.GNU | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ACE/include/makeinclude/platform_clang_common.GNU b/ACE/include/makeinclude/platform_clang_common.GNU index 7aa21c9e77a..00ca5467051 100644 --- a/ACE/include/makeinclude/platform_clang_common.GNU +++ b/ACE/include/makeinclude/platform_clang_common.GNU @@ -75,11 +75,7 @@ ifneq ($(DLD),) LD_FOR_VERSION_TEST = $(DLD) endif # DLD = CXX_FOR_VERSION_TEST # The -E option is GNU ld specific - ifneq ($(mingw32),1) - GNU_LD := $(shell $(LD_FOR_VERSION_TEST) -v 2>&1 | grep -c 'GNU ld') - else - GNU_LD := $(if $(findstring GNU ld,$(shell $(LD_FOR_VERSION_TEST) -v)), 1, 0) - endif # mingw32 + GNU_LD := $(if $(findstring GNU ld,$(shell $(LD_FOR_VERSION_TEST) -v)), 1, 0) endif # DLD ifeq ($(GNU_LD),1) |