summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2020-12-12 20:24:18 -0600
committerFred Hornsey <hornseyf@objectcomputing.com>2020-12-12 20:24:18 -0600
commitf6770cf33569bf04bedfa8be87179e826cd79f70 (patch)
treeb4887d94f6f46f5be2b46bacecb1d5a3e43a8eac
parent66cd36af76472454c9575c92057e638893bb54d3 (diff)
downloadATCD-f6770cf33569bf04bedfa8be87179e826cd79f70.tar.gz
Changes from #1321
https://github.com/DOCGroup/ACE_TAO/pull/1321
-rw-r--r--ACE/include/makeinclude/platform_clang_common.GNU3
-rw-r--r--ACE/include/makeinclude/platform_g++_common.GNU3
2 files changed, 6 insertions, 0 deletions
diff --git a/ACE/include/makeinclude/platform_clang_common.GNU b/ACE/include/makeinclude/platform_clang_common.GNU
index 71ead91ece3..b6d6c43bf61 100644
--- a/ACE/include/makeinclude/platform_clang_common.GNU
+++ b/ACE/include/makeinclude/platform_clang_common.GNU
@@ -144,3 +144,6 @@ else
endif # shared_libs
FLAGS_C_CC += -W -Wall
+
+# Disable "warning: creating *.a" Message
+ARFLAGS += -c
diff --git a/ACE/include/makeinclude/platform_g++_common.GNU b/ACE/include/makeinclude/platform_g++_common.GNU
index 413fb0c0b88..df5622c20e6 100644
--- a/ACE/include/makeinclude/platform_g++_common.GNU
+++ b/ACE/include/makeinclude/platform_g++_common.GNU
@@ -253,3 +253,6 @@ pipes ?= 1
FLAGS_C_CC += -Wall -W -Wpointer-arith
CCFLAGS += -Wnon-virtual-dtor
+
+# Suppress "ar: creating *.a" Message
+ARFLAGS += -c