Better build script
This commit is contained in:
parent
b232bb7826
commit
1da2407a61
40
build.sh
40
build.sh
@ -1,13 +1,17 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ -z ${ANDROID_NDK_HOME+x} ]; then
|
if [ -z ${ANDROID_NDK_HOME+x} ]; then
|
||||||
echo "Error: \$ANDROID_NDK_HOME is not defined."
|
echo "Error: \$ANDROID_NDK_HOME is not defined." >&2
|
||||||
elif [ -z ${OPENSSL_PATH+x} ]; then
|
exit 1
|
||||||
echo "Error: \$OPENSSL_PATH is not defined."
|
|
||||||
else
|
else
|
||||||
NDK_BIN_PATH="$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin"
|
NDK_BIN_PATH="$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin"
|
||||||
declare -a ABIs=("x86_64" "x86" "arm64-v8a" "armeabi-v7a")
|
declare -a ABIs=("x86_64" "x86" "arm64-v8a" "armeabi-v7a")
|
||||||
|
|
||||||
|
invalid_abi() {
|
||||||
|
echo "Invalid ABI: $1" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
compile_openssl(){
|
compile_openssl(){
|
||||||
if [ ! -d "./lib/$1" ]; then
|
if [ ! -d "./lib/$1" ]; then
|
||||||
if [ "$1" = "x86_64" ]; then
|
if [ "$1" = "x86_64" ]; then
|
||||||
@ -19,15 +23,26 @@ else
|
|||||||
elif [ "$1" = "armeabi-v7a" ]; then
|
elif [ "$1" = "armeabi-v7a" ]; then
|
||||||
OPENSSL_ARCH="android-arm"
|
OPENSSL_ARCH="android-arm"
|
||||||
else
|
else
|
||||||
echo "Invalid ABI: $1"
|
invalid_abi $1
|
||||||
exit
|
fi
|
||||||
|
if [ -z ${OPENSSL_PATH+x} ]; then
|
||||||
|
echo "Error: \$OPENSSL_PATH is not defined." >&2
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CFLAGS=-D__ANDROID_API__=21
|
export CFLAGS=-D__ANDROID_API__=21
|
||||||
export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$ANDROID_NDK_HOME/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin:$PATH
|
export PATH=$ANDROID_NDK_HOME/toolchains/llvm/prebuilt/linux-x86_64/bin:$ANDROID_NDK_HOME/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin:$PATH
|
||||||
(cd "$OPENSSL_PATH" && if [ -f "Makefile" ]; then make clean; fi && ./Configure $OPENSSL_ARCH -D__ANDROID_API__=21 && make -j4 build_libs)
|
(
|
||||||
mkdir -p "./lib/$1" && cp "$OPENSSL_PATH/libcrypto.a" "$OPENSSL_PATH/libssl.a" "./lib/$1"
|
cd "$OPENSSL_PATH"
|
||||||
mkdir -p "./include/$1" && cp -r "$OPENSSL_PATH"/include/* "./include/$1/"
|
if [ -f "Makefile" ]; then
|
||||||
|
make clean
|
||||||
|
fi
|
||||||
|
./Configure $OPENSSL_ARCH -D__ANDROID_API__=21 &&
|
||||||
|
make -j $(nproc --all) build_libs
|
||||||
|
) &&
|
||||||
|
mkdir -p "./lib/$1" "./include/$1" &&
|
||||||
|
cp "$OPENSSL_PATH/libcrypto.a" "$OPENSSL_PATH/libssl.a" "./lib/$1" &&
|
||||||
|
cp -r "$OPENSSL_PATH"/include/* "./include/$1/" || exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,8 +62,7 @@ else
|
|||||||
export GOARCH=arm
|
export GOARCH=arm
|
||||||
export GOARM=7
|
export GOARM=7
|
||||||
else
|
else
|
||||||
echo "Invalid ABI: $1"
|
invalid_abi $1
|
||||||
exit
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export CC="$NDK_BIN_PATH/$CFN"
|
export CC="$NDK_BIN_PATH/$CFN"
|
||||||
@ -57,9 +71,10 @@ else
|
|||||||
export GOOS=android
|
export GOOS=android
|
||||||
export CGO_CFLAGS="-I ${PWD}/include/$1"
|
export CGO_CFLAGS="-I ${PWD}/include/$1"
|
||||||
export CGO_LDFLAGS="-Wl,-soname=libgocryptfs.so -L${PWD}/lib/$1"
|
export CGO_LDFLAGS="-Wl,-soname=libgocryptfs.so -L${PWD}/lib/$1"
|
||||||
go build -o build/$1/libgocryptfs.so -buildmode=c-shared
|
go build -o build/$1/libgocryptfs.so -buildmode=c-shared || exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cd $(dirname $0) || exit 1
|
||||||
if [ "$#" -eq 1 ]; then
|
if [ "$#" -eq 1 ]; then
|
||||||
compile_for_arch $1
|
compile_for_arch $1
|
||||||
else
|
else
|
||||||
@ -68,5 +83,4 @@ else
|
|||||||
compile_for_arch $abi
|
compile_for_arch $abi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
echo "Done."
|
fi
|
||||||
fi
|
|
||||||
|
2
file.go
2
file.go
@ -47,7 +47,7 @@ func (volume *Volume) registerFileHandle(fd int, cName, path string) int {
|
|||||||
}
|
}
|
||||||
c++
|
c++
|
||||||
}
|
}
|
||||||
volume.file_handles[handleID] = File{os.NewFile(uintptr(fd), cName), string([]byte(path[:]))}//pathCopy.String()}
|
volume.file_handles[handleID] = File{os.NewFile(uintptr(fd), cName), string([]byte(path[:]))}
|
||||||
return handleID
|
return handleID
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user