diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-22 14:49:24 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-22 15:02:33 +0000 |
commit | ad8ed6ce4f46f6ab8af86863049588e0476a0237 (patch) | |
tree | c34b8b02a273a6dbc7465fc8f425cc152273f83c /main/ruby/APKBUILD | |
parent | 6b052e1df00357dfdd96966550fa36d3e5741dfd (diff) | |
download | aports-ad8ed6ce4f46f6ab8af86863049588e0476a0237.tar.bz2 aports-ad8ed6ce4f46f6ab8af86863049588e0476a0237.tar.xz |
main/ruby: enable on aarch64
add no-omit-frame-pointer to CPPFLAGS
Diffstat (limited to 'main/ruby/APKBUILD')
-rw-r--r-- | main/ruby/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/ruby/APKBUILD b/main/ruby/APKBUILD index 021a2e404c..6f5b5399ed 100644 --- a/main/ruby/APKBUILD +++ b/main/ruby/APKBUILD @@ -9,7 +9,7 @@ _abi=2.3.0 pkgdesc="An object-oriented language for quick and easy programming" url="http://www.ruby-lang.org/en/" -arch="all !aarch64" +arch="all" license="Ruby" depends="" depends_dev="gmp-dev" @@ -55,6 +55,7 @@ build() { # In many places aliasing rules are broken; play it safe # as it's risky with newer compilers to leave it as it is. export CFLAGS="$CFLAGS -fno-omit-frame-pointer -fno-strict-aliasing" + export CPPFLAGS="$CPPFLAGS -fno-omit-frame-pointer -fno-strict-aliasing" # turn off distcc/ccache # http://bugs.alpinelinux.org/issues/show/1 |