hello-armv7l.sh 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #! /bin/sh
  2. ## Copyright (C) 2017 Jeremiah Orians
  3. ## Copyright (C) 2021 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. TMPDIR="test/test0106/tmp-armv7l"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture armv7l \
  24. -f test/common_armv7l/functions/putchar.c \
  25. -f test/common_armv7l/functions/getchar.c \
  26. -f test/common_armv7l/functions/exit.c \
  27. -f test/common_armv7l/functions/malloc.c \
  28. -f test/test0106/cc500.c \
  29. --bootstrap-mode \
  30. -o ${TMPDIR}/cc0.M1 \
  31. || exit 1
  32. # Macro assemble with libc written in M1-Macro
  33. M1 \
  34. -f test/common_armv7l/armv7l_defs.M1 \
  35. -f test/common_armv7l/libc-core.M1 \
  36. -f ${TMPDIR}/cc0.M1 \
  37. --LittleEndian \
  38. --architecture armv7l \
  39. -o ${TMPDIR}/cc0.hex2 \
  40. || exit 2
  41. # Resolve all linkages
  42. hex2 \
  43. -f test/common_armv7l/ELF-armv7l.hex2 \
  44. -f ${TMPDIR}/cc0.hex2 \
  45. --LittleEndian \
  46. --architecture armv7l \
  47. --BaseAddress 0x10000 \
  48. -o test/results/test0106-armv7l-binary \
  49. --exec_enable \
  50. || exit 3
  51. # Ensure binary works if host machine supports test
  52. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "armv7l" ]
  53. then
  54. . ./sha256.sh
  55. # Verify that the compiled program can compile itself
  56. ./test/results/test0106-armv7l-binary < test/test0106/cc500.c >| test/test0106/cc1 || exit 4
  57. out=$(sha256_check test/test0106/proof0.answer)
  58. [ "$out" = "test/test0106/cc1: OK" ] || exit 5
  59. fi
  60. exit 0