mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-26 01:20:28 +00:00
7 lines
177 B
Bash
Executable file
7 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
DIR="$1"
|
|
MUSL_DIR="$DIR/build/musl/x86_64-linux-musl-native"
|
|
|
|
export PATH="$PATH:$MUSL_DIR/bin"
|
|
"$DIR/../gradlew" :cli:nativeCompile "-Dorg.gradle.jvmargs=-Xmx2048M"
|