diff options
author | V3n3RiX <venerix@koprulu.sector> | 2023-02-20 02:17:30 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2023-02-20 02:17:30 +0000 |
commit | 8dd17625671faf6a47abf31d4c96a1e20d764ba5 (patch) | |
tree | 6dd5062cd293d1c2fc5af1f89cd548c7b3a62f3c /eclass | |
parent | d4725f7e03f4d243d29d408f4b9de39459e00d4c (diff) |
gentoo auto-resync : 20:02:2023 - 02:17:29
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 37514 -> 37515 bytes | |||
-rw-r--r-- | eclass/go-module.eclass | 2 | ||||
-rw-r--r-- | eclass/toolchain-funcs.eclass | 7 |
3 files changed, 8 insertions, 1 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex 31e7d893c03b..313f66b3f74d 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 5703b4fd8810..bcdd521619ac 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -352,7 +352,7 @@ go-module_setup_proxy() { # - Otherwise do a normal unpack. go-module_src_unpack() { if use amd64 || use arm || use arm64 || - ( use ppc64 && ! use big-endian ) || use s390 || use x86; then + ( use ppc64 && [[ $(tc-endian) == "little" ]] ) || use s390 || use x86; then GOFLAGS="-buildmode=pie ${GOFLAGS}" fi GOFLAGS="${GOFLAGS} -p=$(makeopts_jobs)" diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass index 8a4f33e71bb7..805a3b0dfe61 100644 --- a/eclass/toolchain-funcs.eclass +++ b/eclass/toolchain-funcs.eclass @@ -757,6 +757,13 @@ tc-arch() { tc-ninja_magic_to_arch portage "$@" } +# @FUNCTION: tc-endian +# @USAGE: [toolchain prefix] +# @RETURN: 'big' or 'little' corresponding to the passed (or host) endianness +# @DESCRIPTION: +# Accepts 'host' as an argument which defaults to CTARGET and falls back to CHOST +# if unspecified. Returns 'big' or 'little' depending on whether 'host' is +# big or little endian. tc-endian() { local host=$1 [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |