Skip to content

Commit

Permalink
[libnacs-git] disable openlibm on archlinux armv7, we did not package…
Browse files Browse the repository at this point in the history
… it here...
  • Loading branch information
yuyichao committed Dec 31, 2024
1 parent 039e001 commit 634e322
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions arch-arm/libnacs-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ build() {
}

package() {
depends=(libopenlibm.so libyaml-cpp.so libzmq.so)
depends=(libyaml-cpp.so libzmq.so)
if [[ $CARCH == armv7h ]]; then
depends+=(knacs)
provides+=(libnacs-kernel.so)
else
depends+=(intel-tbb llvm-libs sleef)
depends+=(libopenlibm.so intel-tbb llvm-libs sleef)
fi
cd libnacs/build-${CARCH}

Expand Down
4 changes: 2 additions & 2 deletions arch/libnacs-git/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ arch=(x86_64 armv7h aarch64)
url='http://github.com/nacs-lab/libnacs'
license=('LGPL')
options=('!strip' 'debug')
depends=(libopenlibm.so libyaml-cpp.so libzmq.so)
depends=(libyaml-cpp.so libzmq.so)
provides=(libnacs-utils.so libnacs-seq.so)
makedepends=(cmake git cppzmq)
source=("git+https://github.com/nacs-lab/libnacs")
Expand All @@ -22,7 +22,7 @@ else
cmake_args=(-DENABLE_KNACS=Off
-DENABLE_SIMD=On
-DENABLE_LLVM=On)
depends+=(intel-tbb llvm-libs sleef)
depends+=(libopenlibm.so intel-tbb llvm-libs sleef)
makedepends+=(llvm)
fi

Expand Down

0 comments on commit 634e322

Please sign in to comment.