diff options
author | Alexey Neyman <stilor@att.net> | 2017-01-28 13:33:43 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-28 13:33:43 -0800 |
commit | d0682f9ad5492ea541edb77d1c39d82144477b8a (patch) | |
tree | 80adb198f805f8c2b8057dc12c03dd557a5062af /scripts/build/arch.sh | |
parent | 0636034688b0d03577ae1b543c92ebab90d14c68 (diff) | |
parent | d7b043e360dbf261ddb97accf5c454d3cf88f92e (diff) | |
download | crosstool-ng-d0682f9ad5492ea541edb77d1c39d82144477b8a.tar.gz crosstool-ng-d0682f9ad5492ea541edb77d1c39d82144477b8a.tar.bz2 crosstool-ng-d0682f9ad5492ea541edb77d1c39d82144477b8a.zip |
Merge pull request #563 from stilor/musl-mips-refix
Add a workaround for musl in build scripts
Diffstat (limited to 'scripts/build/arch.sh')
-rw-r--r-- | scripts/build/arch.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/build/arch.sh b/scripts/build/arch.sh index 3d3611b1..75d3e211 100644 --- a/scripts/build/arch.sh +++ b/scripts/build/arch.sh @@ -64,5 +64,10 @@ CT_DoArchMUSLHeaderDir() { :; } +# MUSL: Perform any final adjustments on the installed libc/headers +CT_DoArchMUSLPostInstall() { + :; +} + # Override from the actual arch implementation as needed. . "${CT_LIB_DIR}/scripts/build/arch/${CT_ARCH}.sh" |