mark boards as experimental
[openadk.git] / scripts / scan-tools.sh
blob835606e60590ea232c1fa5b5e1f9a643db052364
1 # This file is part of the OpenADK project. OpenADK is copyrighted
2 # material, please see the LICENCE file in the top-level directory.
4 shopt -s extglob
5 topdir=$(pwd)
6 opath=$PATH
7 out=0
8 clang=0
10 if [[ $NO_ERROR != @(0|1) ]]; then
11 echo Please do not invoke this script directly!
12 exit 1
15 set -e
16 rm -rf $topdir/tmp
17 mkdir -p $topdir/tmp
18 cd $topdir/tmp
20 os=$(uname)
22 rm -f foo
23 echo >FOO
24 if [[ -e foo ]]; then
25 cat >&2 <<-EOF
26 ERROR: OpenADK cannot be built in a case-insensitive file system.
27 EOF
28 case $os in
29 CYG*)
30 echo "Building OpenADK on $os needs a small registry change."
31 echo 'http://cygwin.com/cygwin-ug-net/using-specialnames.html'
33 Darwin*)
34 echo "Building OpenADK on $os needs a case-sensitive disk partition."
35 echo "For Snow Leopard and above you can use diskutil to resize your existing disk."
36 echo "Example: sudo diskutil resizeVolume disk0s2 90G 1 jhfsx adk 30G"
37 echo "For older versions you might consider to use a disk image:"
38 echo "hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 30g ~/openadk.dmg"
40 esac
41 exit 1
43 rm -f FOO
45 case $os in
46 Linux)
48 FreeBSD)
50 MirBSD)
52 CYG*)
54 NetBSD)
56 OpenBSD)
57 if ! which gmake >/dev/null 2>&1; then
58 echo You must install GNU make to continue.
59 echo
60 out=1
63 Darwin*)
64 clang=1
67 # unsupported
68 echo "Building OpenADK on $os is currently unsupported."
69 echo "Sorry."
70 exit 1
72 esac
74 set +e
76 if [ -z $(which gmake 2>/dev/null ) ];then
77 makecmd=$(which make 2>/dev/null )
78 else
79 makecmd=$(which gmake 2>/dev/null )
82 cat >Makefile <<'EOF'
83 include ${ADK_TOPDIR}/prereq.mk
84 all: run-test
86 test: test.c
87 ${HOST_CC} ${HOST_CFLAGS} -o $@ $^ ${LDADD}
89 run-test: test
90 ./test
91 EOF
92 cat >test.c <<-'EOF'
93 #include <stdio.h>
94 int
95 main()
97 printf("Yay! Native compiler works.\n");
98 return (0);
101 if [[ $clang -eq 0 ]]; then
102 X=$($makecmd ADK_TOPDIR=$topdir LDADD=-lgcc 2>&1)
103 if [[ $X != *@(Native compiler works)* ]]; then
104 echo Cannot compile with shared libgcc use static one.
105 HOST_CFLAGS=-static-libgcc
106 echo "HOST_CFLAGS:=-O0 -g0 -static-libgcc" >> $topdir/prereq.mk
107 echo "HOST_CXXFLAGS:=-O0 -g0 -static-libgcc" >> $topdir/prereq.mk
108 else
109 echo "HOST_CFLAGS:=-O0 -g0" >> $topdir/prereq.mk
110 echo "HOST_CXXFLAGS:=-O0 -g0" >> $topdir/prereq.mk
112 else
113 echo "HOST_CFLAGS:=-O0 -g0" >> $topdir/prereq.mk
114 echo "HOST_CXXFLAGS:=-O0 -g0" >> $topdir/prereq.mk
117 X=$($makecmd ADK_TOPDIR=$topdir HOST_CFLAGS=${HOST_CFLAGS} 2>&1)
118 if [[ $X != *@(Native compiler works)* ]]; then
119 echo "$X" | sed 's/^/| /'
120 echo Cannot compile a simple test programme.
121 echo You must install a host make and C compiler,
122 echo usually GCC, to proceed.
123 echo
124 out=1
126 rm test 2>/dev/null
128 if ! which shasum >/dev/null 2>&1; then
129 if ! which sha256sum >/dev/null 2>&1; then
130 if ! which cksum >/dev/null 2>&1; then
131 echo You must install shasum or sha256sum or cksum to continue.
132 echo
133 out=1
138 if ! which gzip >/dev/null 2>&1; then
139 echo You must install gzip to continue.
140 echo
141 out=1
144 cat >test.c <<-'EOF'
145 #include <stdio.h>
146 #include <zlib.h>
148 #ifndef STDIN_FILENO
149 #define STDIN_FILENO 0
150 #endif
153 main()
155 gzFile zstdin;
156 char buf[1024];
157 int i;
159 zstdin = gzdopen(STDIN_FILENO, "rb");
160 i = gzread(zstdin, buf, sizeof (buf));
161 if ((i > 0) && (i < sizeof (buf)))
162 buf[i] = '\0';
163 buf[sizeof (buf) - 1] = '\0';
164 printf("%s\n", buf);
165 return (0);
168 X=$(echo 'Yay! Native compiler works.' | gzip | \
169 $makecmd ADK_TOPDIR=$topdir LDADD=-lz HOST_CFLAGS=${HOST_CFLAGS} 2>&1)
170 if [[ $X != *@(Native compiler works)* ]]; then
171 echo "$X" | sed 's/^/| /'
172 echo Cannot compile a libz test programm.
173 echo You must install the zlib development package,
174 echo usually called libz-dev, and the run-time library.
175 echo
176 out=1
179 if [[ ! -s /usr/include/ncursesw/curses.h && \
180 ! -s /usr/include/ncurses.h && \
181 ! -s /usr/include/curses.h && \
182 ! -s /usr/include/ncurses/ncurses.h && \
183 ! -s /usr/local/opt/ncurses/include/ncursesw/ncurses.h ]]; then
184 echo Install ncurses header files, please.
185 echo
186 out=1
189 if ! which wget >/dev/null 2>&1; then
190 echo You must install wget to continue.
191 echo
192 out=1
195 if ! which perl >/dev/null 2>&1; then
196 echo You must install perl to continue.
197 echo
198 out=1
201 if ! which g++ >/dev/null 2>&1; then
202 echo "You need a C++ compiler to continue."
203 echo
204 out=1
207 # always required, but can be provided by host
208 host_build_bc=0
209 if which bc >/dev/null 2>&1; then
210 if ! echo quit|bc -q 2>/dev/null >/dev/null;then
211 host_build_bc=1
213 else
214 host_build_bc=1
217 host_build_bison=0
218 if ! which bison >/dev/null 2>&1; then
219 host_build_bison=1
222 host_build_bzip2=0
223 if ! which bzip2 >/dev/null 2>&1; then
224 host_build_bzip2=1
227 host_build_file=0
228 if ! which file >/dev/null 2>&1; then
229 host_build_file=1
232 host_build_flex=0
233 if ! which flex >/dev/null 2>&1; then
234 host_build_flex=1
237 host_build_m4=0
238 if ! which m4 >/dev/null 2>&1; then
239 host_build_m4=1
242 host_build_mksh=0
243 if ! which mksh >/dev/null 2>&1; then
244 host_build_mksh=1
247 host_build_patch=0
248 if ! which patch >/dev/null 2>&1; then
249 host_build_patch=1
252 host_build_pkgconf=0
253 if ! which pkgconf >/dev/null 2>&1; then
254 host_build_pkgconf=1
257 host_build_tar=0
258 if which tar >/dev/null 2>&1; then
259 if ! tar --version 2>/dev/null|grep GNU >/dev/null;then
260 host_build_tar=1
262 else
263 host_build_tar=1
266 host_build_findutils=0
267 if ! which gxargs >/dev/null 2>&1; then
268 if which xargs >/dev/null 2>&1; then
269 if ! xargs --version 2>/dev/null|grep GNU >/dev/null;then
270 host_build_findutils=1
275 if ! which gfind >/dev/null 2>&1; then
276 if which find >/dev/null 2>&1; then
277 if ! find --version 2>/dev/null|grep GNU >/dev/null;then
278 host_build_findutils=1
283 host_build_grep=0
284 if which grep >/dev/null 2>&1; then
285 if ! grep --version 2>/dev/null|grep GNU >/dev/null;then
286 host_build_grep=1
290 host_build_gawk=0
291 if ! which gawk >/dev/null 2>&1; then
292 host_build_gawk=1
295 host_build_sed=0
296 if ! which gsed >/dev/null 2>&1; then
297 if which sed >/dev/null 2>&1; then
298 if ! sed --version 2>/dev/null|grep GNU >/dev/null;then
299 host_build_sed=1
304 host_build_xz=0
305 if ! which xz >/dev/null 2>&1; then
306 host_build_xz=1
309 # optional
310 host_build_cdrtools=0
311 if ! which mkisofs >/dev/null 2>&1; then
312 host_build_cdrtools=1
315 host_build_ccache=0
316 if ! which ccache >/dev/null 2>&1; then
317 host_build_ccache=1
320 host_build_genext2fs=0
321 if ! which genext2fs >/dev/null 2>&1; then
322 host_build_genext2fs=1
325 host_build_lzma=0
326 if ! which lzma >/dev/null 2>&1; then
327 host_build_lzma=1
330 host_build_lz4=0
331 if ! which lz4c >/dev/null 2>&1; then
332 host_build_lz4=1
335 host_build_lzop=0
336 if ! which lzop >/dev/null 2>&1; then
337 host_build_lzop=1
340 host_build_qemu=0
341 if ! which qemu-img >/dev/null 2>&1; then
342 host_build_qemu=1
345 echo "config ADK_HOST_BUILD_TOOLS" > $topdir/target/config/Config.in.prereq
346 printf "\t%s\n" "bool" >> $topdir/target/config/Config.in.prereq
347 printf "\t%s\n" "default y" >> $topdir/target/config/Config.in.prereq
348 # always required
349 if [ $host_build_bc -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BC" >> $topdir/target/config/Config.in.prereq ;fi
350 if [ $host_build_bison -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BISON" >> $topdir/target/config/Config.in.prereq ;fi
351 if [ $host_build_bzip2 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BZIP2" >> $topdir/target/config/Config.in.prereq ;fi
352 if [ $host_build_file -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FILE" >> $topdir/target/config/Config.in.prereq ;fi
353 if [ $host_build_flex -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FLEX" >> $topdir/target/config/Config.in.prereq ;fi
354 if [ $host_build_gawk -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GAWK" >> $topdir/target/config/Config.in.prereq ;fi
355 if [ $host_build_grep -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GREP" >> $topdir/target/config/Config.in.prereq ;fi
356 if [ $host_build_m4 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_M4" >> $topdir/target/config/Config.in.prereq ;fi
357 if [ $host_build_mksh -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_MKSH" >> $topdir/target/config/Config.in.prereq ;fi
358 if [ $host_build_patch -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PATCH" >> $topdir/target/config/Config.in.prereq ;fi
359 if [ $host_build_pkgconf -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PKGCONF" >> $topdir/target/config/Config.in.prereq ;fi
360 if [ $host_build_findutils -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FINDUTILS" >> $topdir/target/config/Config.in.prereq ;fi
361 if [ $host_build_sed -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_SED" >> $topdir/target/config/Config.in.prereq ;fi
362 if [ $host_build_tar -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_TAR" >> $topdir/target/config/Config.in.prereq ;fi
363 if [ $host_build_xz -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_XZ" >> $topdir/target/config/Config.in.prereq ;fi
364 # optional
365 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
366 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
367 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
368 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
369 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
370 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
371 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
373 cd $topdir
374 rm -rf tmp
376 exit $out