summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorruki <[email protected]>2016-01-06 09:37:33 +0800
committerruki <[email protected]>2016-01-06 09:37:33 +0800
commitc4a21d88093044a5b42660d62c9eee1f2db7fc55 (patch)
tree20671b6231ddbe6485bc440e913c60aed666cd82 /install
parente8c79d49cde893547e5e7346e9ae1203b03794f8 (diff)
add .travis.yml
Diffstat (limited to 'install')
-rwxr-xr-xinstall5
1 files changed, 4 insertions, 1 deletions
diff --git a/install b/install
index e5d715893..27bb6663e 100755
--- a/install
+++ b/install
@@ -12,6 +12,7 @@ prefix=/usr/local
if [ $1 ] && [ -d $1 ]; then
prefix=$1
fi
+echo installing to $prefix ...
# probe plat
uname=`uname`
@@ -28,6 +29,7 @@ elif [ `uname | egrep -i cygwin` ]; then
else
plat=linux
fi
+echo plat: $plat
# probe arch
arch=x86
@@ -36,9 +38,10 @@ if [ $plat = "linux" ] || [ $plat = "mac" ]; then
arch=x64
fi
fi
+echo arch: $arch
# compile xmake-core
-echo compiling xmake-core...
+echo compiling xmake-core ...
cd ./core
if [ -f .config.mak ]; then
rm .config.mak