We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae3f261 + ac75100 commit e93ea81Copy full SHA for e93ea81
build_all/linux/release.sh
@@ -31,13 +31,18 @@ process_args()
31
process_args $*
32
33
# identify processor architecture
34
-if [[ "$(uname -m)" = "x86_64" ]] ; then
35
- PLAT_ARCH="linux64"
+PLAT_NAME="$(uname -m)"
+
36
+if [[ $PLAT_NAME = "x86_64" ]] ; then
37
+ PLAT_ARCH="manylinux1_x86_64"
38
+elif [[ $PLAT_NAME = "armv7l" ]] ; then
39
+ PLAT_ARCH="linux_armv7l"
40
else
- PLAT_ARCH="linux32"
41
+ PLAT_ARCH="manylinux1_i686"
42
fi
43
44
45
46
# instruct C builder to include python library and to skip tests
47
./c/build_all/linux/build.sh --build-python $PYTHON_VERSION $*
48
[ $? -eq 0 ] || exit $?
0 commit comments