hello-armv7l.sh 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 -x
  19. TMPDIR="test/test0021/tmp-armv7l"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. bin/M2-Planet \
  23. --architecture armv7l \
  24. -f test/common_armv7l/functions/chdir.c \
  25. -f test/common_armv7l/functions/malloc.c \
  26. -f test/common_armv7l/functions/getcwd.c \
  27. -f test/common_armv7l/functions/exit.c \
  28. -f test/common_armv7l/functions/file.c \
  29. -f functions/calloc.c \
  30. -f functions/match.c \
  31. -f functions/file_print.c \
  32. -f test/test0021/chdir.c \
  33. --debug \
  34. --bootstrap-mode \
  35. -o ${TMPDIR}/chdir.M1 \
  36. || exit 1
  37. # Build debug footer
  38. blood-elf \
  39. -f ${TMPDIR}/chdir.M1 \
  40. --entry _start \
  41. -o ${TMPDIR}/chdir-footer.M1 \
  42. || exit 2
  43. # Macro assemble with libc written in M1-Macro
  44. M1 \
  45. -f test/common_armv7l/armv7l_defs.M1 \
  46. -f test/common_armv7l/libc-core.M1 \
  47. -f ${TMPDIR}/chdir.M1 \
  48. -f ${TMPDIR}/chdir-footer.M1 \
  49. --LittleEndian \
  50. --architecture armv7l \
  51. -o ${TMPDIR}/chdir.hex2 \
  52. || exit 3
  53. # Resolve all linkages
  54. hex2 \
  55. -f test/common_armv7l/ELF-armv7l-debug.hex2 \
  56. -f ${TMPDIR}/chdir.hex2 \
  57. --LittleEndian \
  58. --architecture armv7l \
  59. --BaseAddress 0x10000 \
  60. -o test/results/test0021-armv7l-binary \
  61. --exec_enable \
  62. || exit 4
  63. # Ensure binary works if host machine supports test
  64. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "armv7l" ]
  65. then
  66. . ./sha256.sh
  67. # Verify that the resulting file works
  68. ./test/results/test0021-armv7l-binary
  69. [ 0 = $? ] || exit 5
  70. fi
  71. exit 0