Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dev-cpp/highway/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
DIST highway-1.3.0-ac0d5d2.tar.gz 3634995 BLAKE2B be4aec0c40a840b625dad6f21f155493a4a3019ebeeb9eef181f1f2c53da4f058e99baafca3299b8efecf156d2587fcf5edb3b3893ac8268dcff4c78c4e4fe49 SHA512 0f1fdf0bb67f77df19dfe03358ecc6414425f7ec81448399242e13e8858cb72c87718d606df04439c7294ee34f256825c08c836255b2ab0f1d1c11dd149c0335
DIST highway-1.4.0-2607d3b.tar.gz 3691360 BLAKE2B 987dd6db94adc77cab59d5b40e5c26fd7f1b78fb2ac2ff3d8139562a2e5c5486b9e32af98d58dae4cb1dd40b59712faa7f2bdb7f8505467be5128e4be312cea4 SHA512 149e708af9878b7fc93d7bcf722ff938ad1b95c24a04d1b24be0c1e4a2ee01aacd4e729e4388ae81e0c28160e15807e58847fcbca4ea7aa2a81a63d65f11158e
32 changes: 32 additions & 0 deletions dev-cpp/highway/highway-1.4.0.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Distributed under the terms of the GNU General Public License v2
# Autogen by MARK Devkit

EAPI=7
inherit cmake

DESCRIPTION="Performance-portable, length-agnostic SIMD with runtime dispatch"
HOMEPAGE="https://github.com/google/highway"
SRC_URI="https://api.github.com/repos/google/highway/tarball/refs/tags/1.4.0 -> highway-1.4.0-2607d3b.tar.gz"
LICENSE="NOASSERTION"
SLOT="0"
KEYWORDS="*"
IUSE="cpu_flags_arm_neon"

post_src_unpack() {
mv google-highway-* ${S}
}


src_configure() {
local mycmakeargs=(
-DHWY_CMAKE_ARM7=$(usex cpu_flags_arm_neon)
-DBUILD_TESTING=OFF
-DHWY_ENABLE_TESTS=OFF
-DHWY_WARNINGS_ARE_ERRORS=OFF
)
cmake_src_configure
}



# vim: filetype=ebuild