scan-tools.sh 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. shopt -s extglob
  4. topdir=$(pwd)
  5. opath=$PATH
  6. out=0
  7. clang=0
  8. if [[ $NO_ERROR != @(0|1) ]]; then
  9. echo Please do not invoke this script directly!
  10. exit 1
  11. fi
  12. set -e
  13. rm -rf $topdir/tmp
  14. mkdir -p $topdir/tmp
  15. cd $topdir/tmp
  16. os=$(uname)
  17. rm -f foo
  18. echo >FOO
  19. if [[ -e foo ]]; then
  20. cat >&2 <<-EOF
  21. ERROR: OpenADK cannot be built in a case-insensitive file system.
  22. EOF
  23. case $os in
  24. CYG*)
  25. echo "Building OpenADK on $os needs a small registry change."
  26. echo 'http://cygwin.com/cygwin-ug-net/using-specialnames.html'
  27. ;;
  28. Darwin*)
  29. echo "Building OpenADK on $os needs a case-sensitive disk partition."
  30. echo "For Snow Leopard and above you can use diskutil to resize your existing disk."
  31. echo "Example: sudo diskutil resizeVolume disk0s2 90G 1 jhfsx adk 30G"
  32. echo "For older versions you might consider to use a disk image:"
  33. echo "hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 30g ~/openadk.dmg"
  34. ;;
  35. esac
  36. exit 1
  37. fi
  38. rm -f FOO
  39. case $os in
  40. Linux)
  41. ;;
  42. FreeBSD)
  43. ;;
  44. MirBSD)
  45. ;;
  46. CYG*)
  47. ;;
  48. NetBSD)
  49. ;;
  50. OpenBSD)
  51. if ! which gmake >/dev/null 2>&1; then
  52. echo You must install GNU make to continue.
  53. echo
  54. out=1
  55. fi
  56. ;;
  57. Darwin*)
  58. clang=1
  59. ;;
  60. *)
  61. # unsupported
  62. echo "Building OpenADK on $os is currently unsupported."
  63. echo "Sorry."
  64. exit 1
  65. ;;
  66. esac
  67. set +e
  68. if [ -z $(which gmake 2>/dev/null ) ];then
  69. makecmd=$(which make 2>/dev/null )
  70. else
  71. makecmd=$(which gmake 2>/dev/null )
  72. fi
  73. if [ $clang -ne 1 ];then
  74. HCFLAGS=-static-libgcc
  75. fi
  76. cat >Makefile <<'EOF'
  77. include ${ADK_TOPDIR}/prereq.mk
  78. all: run-test
  79. test: test.c
  80. ${HOST_CC} $(HCFLAGS) -o $@ $^ ${LDADD}
  81. run-test: test
  82. ./test
  83. EOF
  84. cat >test.c <<-'EOF'
  85. #include <stdio.h>
  86. int
  87. main()
  88. {
  89. printf("Yay! Native compiler works.\n");
  90. return (0);
  91. }
  92. EOF
  93. X=$($makecmd ADK_TOPDIR=$topdir 2>&1)
  94. if [[ $X != *@(Native compiler works)* ]]; then
  95. echo "$X" | sed 's/^/| /'
  96. echo Cannot compile a simple test programme.
  97. echo You must install a host make and C compiler,
  98. echo usually GCC, to proceed.
  99. echo
  100. out=1
  101. fi
  102. rm test 2>/dev/null
  103. if ! which shasum >/dev/null 2>&1; then
  104. if ! which sha256sum >/dev/null 2>&1; then
  105. if ! which cksum >/dev/null 2>&1; then
  106. echo You must install shasum or sha256sum or cksum to continue.
  107. echo
  108. out=1
  109. fi
  110. fi
  111. fi
  112. if ! which gzip >/dev/null 2>&1; then
  113. echo You must install gzip to continue.
  114. echo
  115. out=1
  116. fi
  117. cat >test.c <<-'EOF'
  118. #include <stdio.h>
  119. #include <zlib.h>
  120. #ifndef STDIN_FILENO
  121. #define STDIN_FILENO 0
  122. #endif
  123. int
  124. main()
  125. {
  126. gzFile zstdin;
  127. char buf[1024];
  128. int i;
  129. zstdin = gzdopen(STDIN_FILENO, "rb");
  130. i = gzread(zstdin, buf, sizeof (buf));
  131. if ((i > 0) && (i < sizeof (buf)))
  132. buf[i] = '\0';
  133. buf[sizeof (buf) - 1] = '\0';
  134. printf("%s\n", buf);
  135. return (0);
  136. }
  137. EOF
  138. X=$(echo 'Yay! Native compiler works.' | gzip | \
  139. $makecmd ADK_TOPDIR=$topdir LDADD=-lz 2>&1)
  140. if [[ $X != *@(Native compiler works)* ]]; then
  141. echo "$X" | sed 's/^/| /'
  142. echo Cannot compile a libz test programm.
  143. echo You must install the zlib development package,
  144. echo usually called libz-dev, and the run-time library.
  145. echo
  146. out=1
  147. fi
  148. if [[ ! -s /usr/include/ncurses.h ]]; then
  149. if [[ ! -s /usr/include/curses.h ]]; then
  150. if [[ ! -s /usr/include/ncurses/ncurses.h ]]; then
  151. if [[ ! -s /usr/local/opt/ncurses/include/ncursesw/ncurses.h ]]; then
  152. echo Install ncurses header files, please.
  153. echo
  154. out=1
  155. fi
  156. fi
  157. fi
  158. fi
  159. if ! which wget >/dev/null 2>&1; then
  160. echo You must install wget to continue.
  161. echo
  162. out=1
  163. fi
  164. if ! which perl >/dev/null 2>&1; then
  165. echo You must install perl to continue.
  166. echo
  167. out=1
  168. fi
  169. if ! which g++ >/dev/null 2>&1; then
  170. echo "You need a C++ compiler to continue."
  171. echo
  172. out=1
  173. fi
  174. # always required, but can be provided by host
  175. host_build_bc=0
  176. if which bc >/dev/null 2>&1; then
  177. if ! echo quit|bc -q 2>/dev/null >/dev/null;then
  178. host_build_bc=1
  179. fi
  180. else
  181. host_build_bc=1
  182. fi
  183. host_build_bison=0
  184. if ! which bison >/dev/null 2>&1; then
  185. host_build_bison=1
  186. fi
  187. host_build_bzip2=0
  188. if ! which bzip2 >/dev/null 2>&1; then
  189. host_build_bzip2=1
  190. fi
  191. host_build_file=0
  192. if ! which file >/dev/null 2>&1; then
  193. host_build_file=1
  194. fi
  195. host_build_flex=0
  196. if ! which flex >/dev/null 2>&1; then
  197. host_build_flex=1
  198. fi
  199. host_build_m4=0
  200. if ! which m4 >/dev/null 2>&1; then
  201. host_build_m4=1
  202. fi
  203. host_build_mksh=0
  204. if ! which mksh >/dev/null 2>&1; then
  205. host_build_mksh=1
  206. fi
  207. host_build_patch=0
  208. if ! which patch >/dev/null 2>&1; then
  209. host_build_patch=1
  210. fi
  211. host_build_pkgconf=0
  212. if ! which pkgconf >/dev/null 2>&1; then
  213. host_build_pkgconf=1
  214. fi
  215. host_build_tar=0
  216. if which tar >/dev/null 2>&1; then
  217. if ! tar --version 2>/dev/null|grep GNU >/dev/null;then
  218. host_build_tar=1
  219. fi
  220. else
  221. host_build_tar=1
  222. fi
  223. host_build_findutils=0
  224. if ! which gxargs >/dev/null 2>&1; then
  225. if which xargs >/dev/null 2>&1; then
  226. if ! xargs --version 2>/dev/null|grep GNU >/dev/null;then
  227. host_build_findutils=1
  228. fi
  229. fi
  230. fi
  231. if ! which gfind >/dev/null 2>&1; then
  232. if which find >/dev/null 2>&1; then
  233. if ! find --version 2>/dev/null|grep GNU >/dev/null;then
  234. host_build_findutils=1
  235. fi
  236. fi
  237. fi
  238. host_build_grep=0
  239. if which grep >/dev/null 2>&1; then
  240. if ! grep --version 2>/dev/null|grep GNU >/dev/null;then
  241. host_build_grep=1
  242. fi
  243. fi
  244. host_build_gawk=0
  245. if ! which gawk >/dev/null 2>&1; then
  246. host_build_gawk=1
  247. fi
  248. host_build_sed=0
  249. if ! which gsed >/dev/null 2>&1; then
  250. if which sed >/dev/null 2>&1; then
  251. if ! sed --version 2>/dev/null|grep GNU >/dev/null;then
  252. host_build_sed=1
  253. fi
  254. fi
  255. fi
  256. host_build_xz=0
  257. if ! which xz >/dev/null 2>&1; then
  258. host_build_xz=1
  259. fi
  260. # optional
  261. host_build_cdrtools=0
  262. if ! which mkisofs >/dev/null 2>&1; then
  263. host_build_cdrtools=1
  264. fi
  265. host_build_ccache=0
  266. if ! which ccache >/dev/null 2>&1; then
  267. host_build_ccache=1
  268. fi
  269. host_build_genext2fs=0
  270. if ! which genext2fs >/dev/null 2>&1; then
  271. host_build_genext2fs=1
  272. fi
  273. host_build_lzma=0
  274. if ! which lzma >/dev/null 2>&1; then
  275. host_build_lzma=1
  276. fi
  277. host_build_lz4=0
  278. if ! which lz4c >/dev/null 2>&1; then
  279. host_build_lz4=1
  280. fi
  281. host_build_lzop=0
  282. if ! which lzop >/dev/null 2>&1; then
  283. host_build_lzop=1
  284. fi
  285. host_build_qemu=0
  286. if ! which qemu-img >/dev/null 2>&1; then
  287. host_build_qemu=1
  288. fi
  289. echo "config ADK_HOST_BUILD_TOOLS" > $topdir/target/config/Config.in.prereq
  290. printf "\t%s\n" "bool" >> $topdir/target/config/Config.in.prereq
  291. printf "\t%s\n" "default y" >> $topdir/target/config/Config.in.prereq
  292. # always required
  293. if [ $host_build_bc -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BC" >> $topdir/target/config/Config.in.prereq ;fi
  294. if [ $host_build_bison -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BISON" >> $topdir/target/config/Config.in.prereq ;fi
  295. if [ $host_build_bzip2 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BZIP2" >> $topdir/target/config/Config.in.prereq ;fi
  296. if [ $host_build_file -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FILE" >> $topdir/target/config/Config.in.prereq ;fi
  297. if [ $host_build_flex -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FLEX" >> $topdir/target/config/Config.in.prereq ;fi
  298. if [ $host_build_gawk -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GAWK" >> $topdir/target/config/Config.in.prereq ;fi
  299. if [ $host_build_grep -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GREP" >> $topdir/target/config/Config.in.prereq ;fi
  300. if [ $host_build_m4 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_M4" >> $topdir/target/config/Config.in.prereq ;fi
  301. if [ $host_build_mksh -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_MKSH" >> $topdir/target/config/Config.in.prereq ;fi
  302. if [ $host_build_patch -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PATCH" >> $topdir/target/config/Config.in.prereq ;fi
  303. if [ $host_build_pkgconf -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PKGCONF" >> $topdir/target/config/Config.in.prereq ;fi
  304. if [ $host_build_findutils -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FINDUTILS" >> $topdir/target/config/Config.in.prereq ;fi
  305. if [ $host_build_sed -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_SED" >> $topdir/target/config/Config.in.prereq ;fi
  306. if [ $host_build_tar -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_TAR" >> $topdir/target/config/Config.in.prereq ;fi
  307. if [ $host_build_xz -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_XZ" >> $topdir/target/config/Config.in.prereq ;fi
  308. # optional
  309. if [ $host_build_ccache -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_CCACHE if ADK_HOST_NEED_CCACHE" >> $topdir/target/config/Config.in.prereq ;fi
  310. if [ $host_build_cdrtools -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_CDRTOOLS if ADK_HOST_NEED_CDRTOOLS" >> $topdir/target/config/Config.in.prereq ;fi
  311. if [ $host_build_genext2fs -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GENEXT2FS if ADK_HOST_NEED_GENEXT2FS" >> $topdir/target/config/Config.in.prereq ;fi
  312. if [ $host_build_lzma -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_LZMA if ADK_HOST_NEED_LZMA" >> $topdir/target/config/Config.in.prereq ;fi
  313. if [ $host_build_lz4 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_LZ4 if ADK_HOST_NEED_LZ4" >> $topdir/target/config/Config.in.prereq ;fi
  314. if [ $host_build_lzop -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_LZOP if ADK_HOST_NEED_LZOP" >> $topdir/target/config/Config.in.prereq ;fi
  315. if [ $host_build_qemu -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_QEMU if ADK_HOST_NEED_QEMU" >> $topdir/target/config/Config.in.prereq ;fi
  316. cd $topdir
  317. rm -rf tmp
  318. exit $out