summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-10-26 01:54:20 +0000
committerNick Mathewson <nickm@torproject.org>2006-10-26 01:54:20 +0000
commit3e26083a4f800a238627e0772832e8bdb987a18f (patch)
tree4e2aa9a584011f58896c0bdda8b7aebe22835f89
parent3fbb292bfff2765c4e541763e4e40e068e55e4ab (diff)
downloadtor-3e26083a4f800a238627e0772832e8bdb987a18f.tar.gz
tor-3e26083a4f800a238627e0772832e8bdb987a18f.zip
r9391@Kushana: nickm | 2006-10-25 21:51:33 -0400
Patch to cross.sh from Michael Mohr; check more values before failing; always --enable-eventdns svn:r8830
-rw-r--r--contrib/cross.sh39
1 files changed, 31 insertions, 8 deletions
diff --git a/contrib/cross.sh b/contrib/cross.sh
index 890e4496de..8d107a4bec 100644
--- a/contrib/cross.sh
+++ b/contrib/cross.sh
@@ -50,10 +50,14 @@
# disable the platform-specific tests in configure
export CROSS_COMPILE=yes
+# for error conditions
+EXITVAL=0
+
if [ ! -f configure ]
then
- echo "Please run this script from the root of the Tor distribution."
- exit -1
+ echo "Please run this script from the root of the Tor distribution"
+ echo "and ensure that autogen.sh has been run."
+ EXITVAL=-1
fi
if [ -z $PREFIX ]
@@ -61,7 +65,7 @@ then
echo "You must define \$PREFIX since you are cross-compiling."
echo "Select a non-system location (i.e. /tmp/tor-cross):"
echo " export PREFIX=/tmp/tor-cross"
- exit -1
+ EXITVAL=-1
fi
if [ -z $CROSSPATH ]
@@ -69,7 +73,7 @@ then
echo "You must define the location of your cross-compiler's"
echo "directory using \$CROSSPATH; for example,"
echo " export CROSSPATH=/opt/cross/staging_dir_mipsel/bin"
- exit -1
+ EXITVAL=-1
fi
if [ -z $ARCH_PREFIX ]
@@ -78,14 +82,14 @@ then
echo "if you normally cross-compile applications using"
echo "mipsel-linux-uclibc-gcc, you would set \$ARCH_PREFIX like so:"
echo " export ARCH_PREFIX=mipsel-linux-uclibc-"
- exit -1
+ EXITVAL=-1
fi
if [ -z $HOST ]
then
echo "You must specify a target processor with \$HOST; for example:"
echo " export HOST=mipsel-unknown-elf"
- exit -1
+ EXITVAL=-1
fi
if [ -z $BUILD ]
@@ -94,7 +98,13 @@ then
echo " export BUILD=i686-pc-linux-gnu"
echo "If you wish to let configure autodetect the host, set \$BUILD to 'auto':"
echo " export BUILD=auto"
- exit -1
+ EXITVAL=-1
+fi
+
+if [ $EXITVAL -ne 0 ]
+then
+ echo "Remember, you can hard-code these values in cross.sh if needed."
+ exit $EXITVAL
fi
# clean up any existing object files
@@ -111,10 +121,14 @@ export CC=${ARCH_PREFIX}gcc
if [ $BUILD == "auto" ]
then
./configure \
+ --enable-debug \
+ --enable-eventdns \
--prefix=$PREFIX \
--host=$HOST
else
./configure \
+ --enable-debug \
+ --enable-eventdns \
--prefix=$PREFIX \
--host=$HOST \
--build=$BUILD
@@ -134,6 +148,16 @@ fi
make
+# has a problem occurred?
+if [ $? -ne 0 ]
+then
+ echo ""
+ echo "A problem has been detected with make."
+ echo "Please check the output above and rerun make."
+ echo ""
+ exit -1
+fi
+
# if $STRIP has length (i.e. STRIP=yes), strip the binaries
if [ ! -z $STRIP ]
then
@@ -147,4 +171,3 @@ echo ""
echo "Tor should be compiled at this point. Now run 'make install' to"
echo "install to $PREFIX"
echo ""
-