hello-aarch64.sh 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## Copyright (C) 2020 deesix <deesix@tuta.io>
  4. ## This file is part of M2-Planet.
  5. ##
  6. ## M2-Planet is free software: you can redistribute it and/or modify
  7. ## it under the terms of the GNU General Public License as published by
  8. ## the Free Software Foundation, either version 3 of the License, or
  9. ## (at your option) any later version.
  10. ##
  11. ## M2-Planet is distributed in the hope that it will be useful,
  12. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ## GNU General Public License for more details.
  15. ##
  16. ## You should have received a copy of the GNU General Public License
  17. ## along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
  18. set -ex
  19. # Build the test
  20. bin/M2-Planet --architecture aarch64 \
  21. -f test/common_aarch64/functions/file.c \
  22. -f test/common_aarch64/functions/malloc.c \
  23. -f functions/calloc.c \
  24. -f test/test0018/math.c \
  25. --bootstrap-mode \
  26. -o test/test0018/math.M1 || exit 1
  27. # Macro assemble with libc written in M1-Macro
  28. M1 -f test/common_aarch64/aarch64_defs.M1 \
  29. -f test/common_aarch64/libc-core.M1 \
  30. -f test/test0018/math.M1 \
  31. --LittleEndian \
  32. --architecture aarch64 \
  33. -o test/test0018/math.hex2 || exit 2
  34. # Resolve all linkages
  35. hex2 -f test/common_aarch64/ELF-aarch64.hex2 \
  36. -f test/test0018/math.hex2 \
  37. --LittleEndian \
  38. --architecture aarch64 \
  39. --BaseAddress 0x400000 \
  40. -o test/results/test0018-aarch64-binary \
  41. --exec_enable || exit 3
  42. # Ensure binary works if host machine supports test
  43. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "aarch64" ]
  44. then
  45. . ./sha256.sh
  46. # Verify that the resulting file works
  47. ./test/results/test0018-aarch64-binary >| test/test0018/proof || exit 4
  48. out=$(sha256_check test/test0018/proof.answer)
  49. [ "$out" = "test/test0018/proof: OK" ] || exit 5
  50. fi
  51. exit 0