Skip to content

Commit ecbd15d

Browse files
committed
Add libatomic1 when building on linux/386.
1 parent 20f5df8 commit ecbd15d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/build/get-arch-buildargs.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22

33
set -e
4+
set -x
45

56
platformopts() {
67
out=""
@@ -11,6 +12,14 @@ platformopts() {
1112
echo "QEMU_CPU=cortex-a53"
1213
;;
1314
esac
15+
;;
16+
debian:*)
17+
case "${TARGETPLATFORM}" in
18+
linux/386)
19+
echo "LIB_DEPS=${LIB_DEPS} libatomic1"
20+
;;
21+
esac
22+
;;
1423
esac
1524
}
1625

0 commit comments

Comments
 (0)