diff options
author | Jeremy Hansen <jebrhansen+github@gmail.com> | 2023-09-22 17:05:38 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-09-23 11:33:41 +0700 |
commit | ecfff269f0e4d40dabd3eb8ff7745db23dc744e8 (patch) | |
tree | d59a0c9806139429cf68d6431fb1e84decd776ed | |
parent | 514a6c8adc0c7ae94e007a9bb378f9729460b7d3 (diff) |
python/python3-llvmlite: Script cleanup + README notes.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | python/python3-llvmlite/README | 3 | ||||
-rw-r--r-- | python/python3-llvmlite/python3-llvmlite.SlackBuild | 14 |
2 files changed, 3 insertions, 14 deletions
diff --git a/python/python3-llvmlite/README b/python/python3-llvmlite/README index 7ff7f1e98796a..fbb9a2f5463fe 100644 --- a/python/python3-llvmlite/README +++ b/python/python3-llvmlite/README @@ -8,3 +8,6 @@ are not already exposed by the LLVM C API. -A ctypes Python wrapper around the C API. -A pure Python implementation of the subset of the LLVM IR builder that we need for Numba. + +NOTE: Unable to support newer versions than 0.40.1 due to requiring a +newer LLVM than included in Slackware (needs >= 14.0). diff --git a/python/python3-llvmlite/python3-llvmlite.SlackBuild b/python/python3-llvmlite/python3-llvmlite.SlackBuild index de0bd4c8075fe..2449bb1b18339 100644 --- a/python/python3-llvmlite/python3-llvmlite.SlackBuild +++ b/python/python3-llvmlite/python3-llvmlite.SlackBuild @@ -47,20 +47,6 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - set -e rm -rf $PKG |