Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
e2aa6a14
Commit
e2aa6a14
authored
6 years ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
community/binaryen: build fix for aarch64
parent
adc2c2a9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/binaryen/APKBUILD
+4
-2
4 additions, 2 deletions
community/binaryen/APKBUILD
community/binaryen/gcc-march-aarch64.patch
+14
-0
14 additions, 0 deletions
community/binaryen/gcc-march-aarch64.patch
with
18 additions
and
2 deletions
community/binaryen/APKBUILD
+
4
−
2
View file @
e2aa6a14
...
@@ -13,7 +13,8 @@ subpackages="$pkgname-dev"
...
@@ -13,7 +13,8 @@ subpackages="$pkgname-dev"
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://github.com/WebAssembly/
$pkgname
/archive/version_
$pkgver
.tar.gz
source
=
"
$pkgname
-
$pkgver
.tar.gz::https://github.com/WebAssembly/
$pkgname
/archive/version_
$pkgver
.tar.gz
link-dynamically.patch
link-dynamically.patch
ignore-type-limits-error.patch
ignore-type-limits-error.patch
fix-gcc8-wcatch-value.patch"
fix-gcc8-wcatch-value.patch
gcc-march-aarch64.patch"
builddir
=
"
$srcdir
/
$pkgname
-version_
$pkgver
"
builddir
=
"
$srcdir
/
$pkgname
-version_
$pkgver
"
case
"
$CARCH
"
in
case
"
$CARCH
"
in
...
@@ -52,4 +53,5 @@ package() {
...
@@ -52,4 +53,5 @@ package() {
sha512sums
=
"89aa73c1686fb6d54c91990acbc7cd6c1bc7e6da57731bf009fe507c955c98c91582b5b9924c3c3f6a2d36d55ae73f1be79911cdce93dfd74954bca46861c8ad binaryen-40.tar.gz
sha512sums
=
"89aa73c1686fb6d54c91990acbc7cd6c1bc7e6da57731bf009fe507c955c98c91582b5b9924c3c3f6a2d36d55ae73f1be79911cdce93dfd74954bca46861c8ad binaryen-40.tar.gz
9729655be0d952385de959bf7dd84a075b192fe4b221bb5c23e562a83a2bf9202a07536ad393157b23e0447f28bdd16283f64a63588ca42597bb59e9551219c8 link-dynamically.patch
9729655be0d952385de959bf7dd84a075b192fe4b221bb5c23e562a83a2bf9202a07536ad393157b23e0447f28bdd16283f64a63588ca42597bb59e9551219c8 link-dynamically.patch
3b95a197cd8805dfa714cf9f31adc1437b6d29bd4082f752c16d98c40cd024b110c02a412285c78251cb5d0b3080c0f9e4d45d8dd0166c71b9462b1610191ab8 ignore-type-limits-error.patch
3b95a197cd8805dfa714cf9f31adc1437b6d29bd4082f752c16d98c40cd024b110c02a412285c78251cb5d0b3080c0f9e4d45d8dd0166c71b9462b1610191ab8 ignore-type-limits-error.patch
f937a9f9f7f2cab97aa15ade3a800b8924755b27ae4e9e8951ee97dc79d54c95db28d3c71b32c2ed0b5711d6e1884c33cc307564abe759f6ea3c23db60d433a1 fix-gcc8-wcatch-value.patch"
f937a9f9f7f2cab97aa15ade3a800b8924755b27ae4e9e8951ee97dc79d54c95db28d3c71b32c2ed0b5711d6e1884c33cc307564abe759f6ea3c23db60d433a1 fix-gcc8-wcatch-value.patch
43db7456ce3b9a6239b24caa9fc9cb1a59975e742fa74ff6bfcdadbbb453afee62842aaa973596d78294704c7d76cb73eb7703f1d66e40b1bb164e86e5da5914 gcc-march-aarch64.patch"
This diff is collapsed.
Click to expand it.
community/binaryen/gcc-march-aarch64.patch
0 → 100644
+
14
−
0
View file @
e2aa6a14
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d9e5721..9497124 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -141,9 +141,6 @@
ELSE()
# wasm doesn't allow for x87 floating point math
ADD_COMPILE_FLAG("-msse2")
ADD_COMPILE_FLAG("-mfpmath=sse")
- elseif(TARGET_ARCH STREQUAL "ARM")
- # stub for ARM-specific instructions. GCC6 adds NEON with the below flags
- ADD_COMPILE_FLAG("-march=native")
endif ()
endif ()
ADD_COMPILE_FLAG("-Wall")
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment