blob: 3998db043548640b48ab502a7d848bf87ad627bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/sh
if test "$#" -lt 2
then
exit 1
fi
SOURCE_DIR="$1"
BUILD_DIR="$2"
BUILD_TYPE=debug
shift 2
for arg
do
case "$arg" in
--release)
BUILD_TYPE=release;;
esac
done
cargo build --lib --quiet --manifest-path="$SOURCE_DIR/Cargo.toml" --target-dir="$BUILD_DIR" "$@"
RET=$?
if test $RET -ne 0
then
exit $RET
fi
case "$(cargo -vV | sed -s 's/^host: \(.*\)$/\1/')" in
*-windows-*)
LIBNAME=gitcore.lib;;
*)
LIBNAME=libgitcore.a;;
esac
if ! cmp "$BUILD_DIR/$BUILD_TYPE/$LIBNAME" "$BUILD_DIR/libgitcore.a" >/dev/null 2>&1
then
cp "$BUILD_DIR/$BUILD_TYPE/$LIBNAME" "$BUILD_DIR/libgitcore.a"
fi
|