hello-x86.sh 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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/test1000/tmp-x86"
  20. mkdir -p ${TMPDIR}
  21. # Build the test
  22. ./bin/M2-Planet \
  23. --architecture x86 \
  24. -f M2libc/x86/linux/bootstrap.c \
  25. -f cc.h \
  26. -f M2libc/bootstrappable.c \
  27. -f cc_globals.c \
  28. -f cc_reader.c \
  29. -f cc_strings.c \
  30. -f cc_types.c \
  31. -f cc_core.c \
  32. -f cc_macro.c \
  33. -f cc.c \
  34. --debug \
  35. --bootstrap-mode \
  36. -o ${TMPDIR}/cc.M1 \
  37. || exit 1
  38. # Build debug footer
  39. blood-elf \
  40. -f ${TMPDIR}/cc.M1 \
  41. --little-endian \
  42. --entry _start \
  43. -o ${TMPDIR}/cc-footer.M1 \
  44. || exit 2
  45. # Macro assemble with libc written in M1-Macro
  46. M1 \
  47. -f M2libc/x86/x86_defs.M1 \
  48. -f M2libc/x86/libc-core.M1 \
  49. -f ${TMPDIR}/cc.M1 \
  50. -f ${TMPDIR}/cc-footer.M1 \
  51. --little-endian \
  52. --architecture x86 \
  53. -o ${TMPDIR}/cc.hex2 \
  54. || exit 3
  55. # Resolve all linkages
  56. hex2 \
  57. -f M2libc/x86/ELF-x86-debug.hex2 \
  58. -f ${TMPDIR}/cc.hex2 \
  59. --little-endian \
  60. --architecture x86 \
  61. --base-address 0x8048000 \
  62. -o test/results/test1000-x86-binary \
  63. || exit 4
  64. # Ensure binary works if host machine supports test
  65. if [ "$(get_machine ${GET_MACHINE_FLAGS})" = "x86" ]
  66. then
  67. # Verify that the resulting file works
  68. ./test/results/test1000-x86-binary \
  69. --architecture x86 \
  70. -f M2libc/sys/types.h \
  71. -f M2libc/stddef.h \
  72. -f M2libc/sys/utsname.h \
  73. -f M2libc/x86/linux/unistd.c \
  74. -f M2libc/x86/linux/fcntl.c \
  75. -f M2libc/fcntl.c \
  76. -f M2libc/stdlib.c \
  77. -f M2libc/stdio.h \
  78. -f M2libc/stdio.c \
  79. -f cc.h \
  80. -f M2libc/bootstrappable.c \
  81. -f cc_globals.c \
  82. -f cc_reader.c \
  83. -f cc_strings.c \
  84. -f cc_types.c \
  85. -f cc_core.c \
  86. -f cc_macro.c \
  87. -f cc.c \
  88. -o test/test1000/proof \
  89. || exit 5
  90. . ./sha256.sh
  91. out=$(sha256_check test/test1000/proof.answer)
  92. [ "$out" = "test/test1000/proof: OK" ] || exit 6
  93. [ ! -e bin/M2-Planet ] && mv test/results/test1000-x86-binary bin/M2-Planet
  94. fi
  95. exit 0