forked from Public/monero-gui
build settings for linux x86/x64
This commit is contained in:
6
utils.sh
6
utils.sh
@@ -6,7 +6,11 @@ function get_platform {
|
||||
if [ "$(uname)" == "Darwin" ]; then
|
||||
platform="darwin"
|
||||
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
|
||||
platform="linux"
|
||||
if [ "$(expr substr $(uname -m) 1 6)" == "x86_64" ]; then
|
||||
platform="linux64"
|
||||
else
|
||||
platform="linux32"
|
||||
fi
|
||||
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW64_NT" ]; then
|
||||
platform="mingw64"
|
||||
elif [ "$(expr substr $(uname -s) 1 10)" == "MINGW32_NT" ]; then
|
||||
|
||||
Reference in New Issue
Block a user