summaryrefslogtreecommitdiff
path: root/ACE/bin/aix_shr
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-03-04 13:56:48 +0000
commitc4078c377d74290ebe4e66da0b4975da91732376 (patch)
tree1816ef391e42a07929304908ac0e21f4c2f6cb7b /ACE/bin/aix_shr
parent700d1c1a6be348c6c70a2085e559baeb8f4a62ea (diff)
downloadATCD-c4078c377d74290ebe4e66da0b4975da91732376.tar.gz
swap in externals for ACE and TAO
Diffstat (limited to 'ACE/bin/aix_shr')
-rwxr-xr-xACE/bin/aix_shr32
1 files changed, 0 insertions, 32 deletions
diff --git a/ACE/bin/aix_shr b/ACE/bin/aix_shr
deleted file mode 100755
index 16daded8e02..00000000000
--- a/ACE/bin/aix_shr
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-# $Id$
-# Filter out the duplicate symbol warnings from Visual Age C++
-#
-
-output=`basename $0`.$$.`/bin/date +%Y%m%d%H%M%S`
-usrtmp="/tmp"
-for possible in "$TMPDIR" "$TEMP" "$TMP"; do
- if [ "$possible" != "" ]; then
- if [ -w "$possible" ]; then
- usrtmp="$possible"
- break
- fi
- fi
-done
-
-## Send the output to a temporary file and save the return code.
-## This macro is being passed during the to avoid #include errors
-## while instantiating templates.
-$@ -DACE_VACPP_INSTANTIATING_TEMPLATES > "$usrtmp/$output" 2>&1
-status=$?
-
-## Print the output to stdout, but filter duplicate symbol warnings from
-## Visual Age C++-using builds. The first pattern ends up coming from the
-## linker in Visual Age C++ 5 builds; the second is from Visual Age C++ 6.
-/bin/egrep -v '0711-(224|345)|1540-0(424|425|436)' "$usrtmp/$output"
-
-## Clean up the temporary file
-/bin/rm -f "$usrtmp/$output"
-
-## Exit with the return code from the compiler
-exit $status