scan-tools.sh 9.7 KB

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