04-musl 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # Build script for musl.
  2. #
  3. # Copyright (c) 2014-2019 Matias Fonzo, <selk@dragora.org>.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. version=20190807_0847902a
  17. cd -- "$TMPDIR"
  18. rm -rf musl-${version}
  19. unpack "${worktree}/sources/musl-${version}.tar.lz"
  20. # Build instructions
  21. cd musl-${version}
  22. ./configure CC="${target}-gcc" CROSS_COMPILE="${target}-" \
  23. --prefix= \
  24. --syslibdir=/lib \
  25. --enable-debug \
  26. --enable-optimize
  27. make -j${jobs}
  28. make -j${jobs} DESTDIR="${crossdir}/$target" install
  29. # Provide minimal libssp_nonshared.a for the bootstrap process
  30. ${target}-gcc \
  31. -c "${worktree}/archive/gcc/__stack_chk_fail_local.c" \
  32. -o __stack_chk_fail_local.o
  33. ${target}-ar rc libssp_nonshared.a __stack_chk_fail_local.o
  34. ${target}-ranlib libssp_nonshared.a
  35. cp -p libssp_nonshared.a "${crossdir}/${target}/lib/"
  36. cleanup()
  37. {
  38. cd -- "$TMPDIR" && rm -rf musl-${version}
  39. }