Author: steshaw
Date: Thu Nov 30 04:49:10 2006
New Revision: 480911
URL: http://svn.apache.org/viewvc?view=rev&rev=480911
Log:
Added some comments about building a debug release for RHEL3
Modified:
incubator/qpid/trunk/qpid/cpp/README.rhel3
incubator/qpid/trunk/qpid/cpp/options-rhel3.mk
incubator/qpid/trunk/qpid/cpp/release.client.rhel3
Modified: incubator/qpid/trunk/qpid/cpp/README.rhel3
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/README.rhel3?view=diff&rev=480911&r1=480910&r2=480911
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/README.rhel3 (original)
+++ incubator/qpid/trunk/qpid/cpp/README.rhel3 Thu Nov 30 04:49:10 2006
@@ -9,6 +9,12 @@
Install cppunit-1.11.4 into ~/local/cppunit-1.11.4
+If you want a standard release build skip this step. If you want a debug
+build do the following:
+
+ 1. Edit options-rhel3.mk. Comment out definition of RELEASE.
+ 2. Edit release.client.rhel3. Change buildType to "debug".
+
Build using the following command:
$ ./build.rhel3
@@ -20,3 +26,4 @@
or if you want to name the release:
$ ./release.client.rhel3 1.0-RC1
+
Modified: incubator/qpid/trunk/qpid/cpp/options-rhel3.mk
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/options-rhel3.mk?view=diff&rev=480911&r1=480910&r2=480911
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/options-rhel3.mk (original)
+++ incubator/qpid/trunk/qpid/cpp/options-rhel3.mk Thu Nov 30 04:49:10 2006
@@ -2,6 +2,7 @@
# Expects dependencies in ~/local
#
+# Comment out the setting of RELEASE to build a debug release.
RELEASE := 1
# Configure Boost.
Modified: incubator/qpid/trunk/qpid/cpp/release.client.rhel3
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/release.client.rhel3?view=diff&rev=480911&r1=480910&r2=480911
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/release.client.rhel3 (original)
+++ incubator/qpid/trunk/qpid/cpp/release.client.rhel3 Thu Nov 30 04:49:10 2006
@@ -1,5 +1,7 @@
#!/bin/bash
+buildType="release" # change to "debug" to build a debug release
+
if [[ $# -eq 1 ]]; then
name=$1
elif [[ $# -ne 0 ]]; then
@@ -26,8 +28,8 @@
#
mkdir $dir/lib
cp \
- build/apr-release/lib/libqpid_client.so.1.0 \
- build/apr-release/lib/libqpid_common.so.1.0 \
+ build/apr-$buildType/lib/libqpid_client.so.1.0 \
+ build/apr-$buildType/lib/libqpid_common.so.1.0 \
$dir/lib
cp -r ~/local/apr-1.2.7 $dir/lib
cp -r ~/local/boost-1.33.1 $dir/lib