allow to build ppc64 little endian
[openadk.git] / scripts / scan-tools.sh
blobb5d35183a85fa264e8af6ad82efc1ebe562cba16
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/ncurses.h ]]; then
180 if [[ ! -s /usr/include/curses.h ]]; then
181 if [[ ! -s /usr/include/ncurses/ncurses.h ]]; then
182 if [[ ! -s /usr/local/opt/ncurses/include/ncursesw/ncurses.h ]]; then
183 echo Install ncurses header files, please.
184 echo
185 out=1
191 if ! which wget >/dev/null 2>&1; then
192 echo You must install wget to continue.
193 echo
194 out=1
197 if ! which perl >/dev/null 2>&1; then
198 echo You must install perl to continue.
199 echo
200 out=1
203 if ! which g++ >/dev/null 2>&1; then
204 echo "You need a C++ compiler to continue."
205 echo
206 out=1
209 # always required, but can be provided by host
210 host_build_bc=0
211 if which bc >/dev/null 2>&1; then
212 if ! echo quit|bc -q 2>/dev/null >/dev/null;then
213 host_build_bc=1
215 else
216 host_build_bc=1
219 host_build_bison=0
220 if ! which bison >/dev/null 2>&1; then
221 host_build_bison=1
224 host_build_bzip2=0
225 if ! which bzip2 >/dev/null 2>&1; then
226 host_build_bzip2=1
229 host_build_file=0
230 if ! which file >/dev/null 2>&1; then
231 host_build_file=1
234 host_build_flex=0
235 if ! which flex >/dev/null 2>&1; then
236 host_build_flex=1
239 host_build_m4=0
240 if ! which m4 >/dev/null 2>&1; then
241 host_build_m4=1
244 host_build_mksh=0
245 if ! which mksh >/dev/null 2>&1; then
246 host_build_mksh=1
249 host_build_patch=0
250 if ! which patch >/dev/null 2>&1; then
251 host_build_patch=1
254 host_build_pkgconf=0
255 if ! which pkgconf >/dev/null 2>&1; then
256 host_build_pkgconf=1
259 host_build_tar=0
260 if which tar >/dev/null 2>&1; then
261 if ! tar --version 2>/dev/null|grep GNU >/dev/null;then
262 host_build_tar=1
264 else
265 host_build_tar=1
268 host_build_findutils=0
269 if ! which gxargs >/dev/null 2>&1; then
270 if which xargs >/dev/null 2>&1; then
271 if ! xargs --version 2>/dev/null|grep GNU >/dev/null;then
272 host_build_findutils=1
277 if ! which gfind >/dev/null 2>&1; then
278 if which find >/dev/null 2>&1; then
279 if ! find --version 2>/dev/null|grep GNU >/dev/null;then
280 host_build_findutils=1
285 host_build_grep=0
286 if which grep >/dev/null 2>&1; then
287 if ! grep --version 2>/dev/null|grep GNU >/dev/null;then
288 host_build_grep=1
292 host_build_gawk=0
293 if ! which gawk >/dev/null 2>&1; then
294 host_build_gawk=1
297 host_build_sed=0
298 if ! which gsed >/dev/null 2>&1; then
299 if which sed >/dev/null 2>&1; then
300 if ! sed --version 2>/dev/null|grep GNU >/dev/null;then
301 host_build_sed=1
306 host_build_xz=0
307 if ! which xz >/dev/null 2>&1; then
308 host_build_xz=1
311 # optional
312 host_build_cdrtools=0
313 if ! which mkisofs >/dev/null 2>&1; then
314 host_build_cdrtools=1
317 host_build_ccache=0
318 if ! which ccache >/dev/null 2>&1; then
319 host_build_ccache=1
322 host_build_genext2fs=0
323 if ! which genext2fs >/dev/null 2>&1; then
324 host_build_genext2fs=1
327 host_build_lzma=0
328 if ! which lzma >/dev/null 2>&1; then
329 host_build_lzma=1
332 host_build_lz4=0
333 if ! which lz4c >/dev/null 2>&1; then
334 host_build_lz4=1
337 host_build_lzop=0
338 if ! which lzop >/dev/null 2>&1; then
339 host_build_lzop=1
342 host_build_qemu=0
343 if ! which qemu-img >/dev/null 2>&1; then
344 host_build_qemu=1
347 echo "config ADK_HOST_BUILD_TOOLS" > $topdir/target/config/Config.in.prereq
348 printf "\t%s\n" "bool" >> $topdir/target/config/Config.in.prereq
349 printf "\t%s\n" "default y" >> $topdir/target/config/Config.in.prereq
350 # always required
351 if [ $host_build_bc -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BC" >> $topdir/target/config/Config.in.prereq ;fi
352 if [ $host_build_bison -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BISON" >> $topdir/target/config/Config.in.prereq ;fi
353 if [ $host_build_bzip2 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_BZIP2" >> $topdir/target/config/Config.in.prereq ;fi
354 if [ $host_build_file -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FILE" >> $topdir/target/config/Config.in.prereq ;fi
355 if [ $host_build_flex -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FLEX" >> $topdir/target/config/Config.in.prereq ;fi
356 if [ $host_build_gawk -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GAWK" >> $topdir/target/config/Config.in.prereq ;fi
357 if [ $host_build_grep -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_GREP" >> $topdir/target/config/Config.in.prereq ;fi
358 if [ $host_build_m4 -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_M4" >> $topdir/target/config/Config.in.prereq ;fi
359 if [ $host_build_mksh -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_MKSH" >> $topdir/target/config/Config.in.prereq ;fi
360 if [ $host_build_patch -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PATCH" >> $topdir/target/config/Config.in.prereq ;fi
361 if [ $host_build_pkgconf -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_PKGCONF" >> $topdir/target/config/Config.in.prereq ;fi
362 if [ $host_build_findutils -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_FINDUTILS" >> $topdir/target/config/Config.in.prereq ;fi
363 if [ $host_build_sed -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_SED" >> $topdir/target/config/Config.in.prereq ;fi
364 if [ $host_build_tar -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_TAR" >> $topdir/target/config/Config.in.prereq ;fi
365 if [ $host_build_xz -eq 1 ];then printf "\t%s\n" "select ADK_HOST_BUILD_XZ" >> $topdir/target/config/Config.in.prereq ;fi
366 # optional
367 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
368 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
369 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
370 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
371 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
372 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
373 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
375 cd $topdir
376 rm -rf tmp
378 exit $out