diff options
author | Steve Huston <shuston@riverace.com> | 2000-03-08 23:01:39 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2000-03-08 23:01:39 +0000 |
commit | cca9ebf6120d25281a3bf5874149e5cead8952d4 (patch) | |
tree | 9590c0f3f19acfc57ce3063401857d0b6f3eb1dc | |
parent | 5e95a7520cc9045e15d726a68cce854a94ff0240 (diff) | |
download | ATCD-cca9ebf6120d25281a3bf5874149e5cead8952d4.tar.gz |
Wed Mar 08 15:26:31 2000 Steve Huston <shuston@riverace.com>
-rw-r--r-- | ace/ace-dll.icc | 6 | ||||
-rw-r--r-- | tests/libDLL_Test.icc | 26 | ||||
-rw-r--r-- | tests/vacpp_setup.icc | 2 |
3 files changed, 30 insertions, 4 deletions
diff --git a/ace/ace-dll.icc b/ace/ace-dll.icc index 34b8a0b389b..c0b6ff1f068 100644 --- a/ace/ace-dll.icc +++ b/ace/ace-dll.icc @@ -28,9 +28,9 @@ if $__TOS_AIX__ { gen(enumsize, small), report (disable, "CPPC1125") TargetType = "shr" - TargetName = "shr.o" - run after targets("shr.o") "ar -r -u libACEshr.a shr.o" - run cleanup targets("shr.o") "rm -rf libACEshr.a" + TargetName = "libACE.o" + run after targets("libACE.o") "ar -r -u libACE.a libACE.o" + run cleanup targets("libACE.o") "rm -rf libACE.a libACE.o" } option diff --git a/tests/libDLL_Test.icc b/tests/libDLL_Test.icc new file mode 100644 index 00000000000..3d7c678f89c --- /dev/null +++ b/tests/libDLL_Test.icc @@ -0,0 +1,26 @@ +// $Id$ + +include "vacpp_setup.icc" + +if $__TOS_AIX__ { + TargetType = "shr" + TargetName = "libDLL_Test.o" +} + +option + link(libSearchPath, platformLibSearchPath), + incl(searchPath, ".."), + link(linkWithMultiThreadLib,yes), + link(debug) + { + target type ( TargetType ) TargetName + { + source type (cpp) "DLL_Test.cpp" + source platformLinkLibs + } +if $__TOS_AIX__ { + run after targets( TargetName ) "ar -r -u libDLL_Test.a libDLL_Test.o" + run cleanup targets ( TargetName ) "rm -rf libDLL_Test.a" +} + + } diff --git a/tests/vacpp_setup.icc b/tests/vacpp_setup.icc index 65107c9a02d..377b3e61cc5 100644 --- a/tests/vacpp_setup.icc +++ b/tests/vacpp_setup.icc @@ -27,5 +27,5 @@ if $__TOS_AIX__ { opt(level, 3), gen(enumsize, small) platformLibSearchPath = "../ace" - group platformLinkLibs = "libACEshr.a" + group platformLinkLibs = "libACE.a" } |