We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78bc3cd commit f31b02dCopy full SHA for f31b02d
sysroot/configure.sh
@@ -24,6 +24,7 @@ args=()
24
if [[ "${ARCH}" == "aarch64" ]]; then
25
readonly target="aarch64-linux"
26
args+=(
27
+ --with-pic
28
--build=x86_64-linux-gnu
29
--target="${target}"
30
)
@@ -39,6 +40,7 @@ if [[ "${ARCH}" == "aarch64" ]]; then
39
40
elif [[ "${ARCH}" == "armv7" ]]; then
41
readonly target="arm-linux-gnueabihf"
42
43
44
45
46
--with-arch=armv7-a
@@ -58,6 +60,7 @@ elif [[ "${ARCH}" == "armv7" ]]; then
58
60
elif [[ "${ARCH}" == "x86_64" ]]; then
59
61
readonly target="x86_64-linux"
62
63
64
65
--host="${target}"
66
0 commit comments