File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ time-machine() {
22
22
}
23
23
24
24
# Deterministically build Bitcoin Core for HOSTs (overriable by environment)
25
+ # shellcheck disable=SC2153
25
26
for host in ${HOSTS=x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu riscv64-linux-gnu x86_64-w64-mingw32} ; do
26
27
27
28
# Display proper warning when the user interrupts the build
Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ case "$HOST" in
55
55
export CROSS_LIBRARY_PATH=" ${CROSS_GCC} /lib:${CROSS_GCC} /${HOST} /lib:${CROSS_GCC_LIB} :${CROSS_GLIBC} /lib"
56
56
;;
57
57
* linux* )
58
- CROSS_GLIBC=" $( store_path glibc-cross-${HOST} ) "
59
- CROSS_GLIBC_STATIC=" $( store_path glibc-cross-${HOST} static) "
60
- CROSS_KERNEL=" $( store_path linux-libre-headers-cross-${HOST} ) "
61
- CROSS_GCC=" $( store_path gcc-cross-${HOST} ) "
58
+ CROSS_GLIBC=" $( store_path " glibc-cross-${HOST} " ) "
59
+ CROSS_GLIBC_STATIC=" $( store_path " glibc-cross-${HOST} " static) "
60
+ CROSS_KERNEL=" $( store_path " linux-libre-headers-cross-${HOST} " ) "
61
+ CROSS_GCC=" $( store_path " gcc-cross-${HOST} " ) "
62
62
CROSS_GCC_LIBS=( " ${CROSS_GCC} /lib/gcc/${HOST} " /* ) # This expands to an array of directories...
63
63
CROSS_GCC_LIB=" ${CROSS_GCC_LIBS[0]} " # ...we just want the first one (there should only be one)
64
64
You can’t perform that action at this time.
0 commit comments