]> gitweb.factorcode.org Git - factor.git/blob - build.sh
Small fix
[factor.git] / build.sh
1 #!/usr/bin/env bash
2
3 # Programs returning != 0 will not cause script to exit
4 set +e
5
6 # Case insensitive string comparison
7 shopt -s nocaseglob
8 #shopt -s nocasematch
9
10 ECHO="echo"
11 OS=
12 ARCH=
13 WORD=
14 GIT_PROTOCOL=${GIT_PROTOCOL:="https"}
15 GIT_URL=${GIT_URL:=$GIT_PROTOCOL"://github.com/factor/factor.git"}
16 SCRIPT_ARGS="$*"
17
18 test_program_installed() {
19     command -v "$1" >/dev/null 2>&1
20 }
21
22 # return 1 on found
23 test_programs_installed() {
24     local installed=0;
25     $ECHO -n "Checking for all($*)..."
26     for cmd in "$@" ;
27     do
28         if test_program_installed "$cmd"; then
29             ((installed++))
30         fi
31     done
32     if [[ $installed -eq $# ]] ; then
33         $ECHO "found!"
34         return 0
35     fi
36     return 1
37 }
38
39 exit_script() {
40     if [[ $FIND_MAKE_TARGET = true ]] ; then
41         # not $ECHO here
42         echo "$MAKE_TARGET"
43     fi
44     exit "$1"
45 }
46
47 ensure_program_installed() {
48     local installed=0;
49     $ECHO -n "Checking for any($*)..."
50     for cmd in "$@" ;
51     do
52         if test_program_installed "$cmd"; then
53             $ECHO "found $cmd!"
54             ((installed++))
55             return
56         fi
57     done
58     $ECHO "none found."
59     $ECHO -n "Install "
60     if [[ $# -eq 1 ]] ; then
61         $ECHO -n "$1"
62     else
63         $ECHO -n "any of [ $* ]"
64     fi
65     $ECHO " and try again."
66     if [[ $OS == macosx ]] ; then
67         $ECHO "If you have Xcode 4.3 or higher installed, you must install the"
68         $ECHO "Command Line Tools from Xcode Preferences > Downloads in order"
69         $ECHO "to build Factor."
70     fi
71     exit_script 1
72 }
73
74 check_ret() {
75     # Can't execute any commands before saving $?
76     # $1 is the name of the command we are checking
77     RET=$?
78     if [[ $RET -ne 0 ]] ; then
79        $ECHO "$1" failed
80        exit_script 2
81     fi
82 }
83
84 set_downloader() {
85     if test_program_installed wget; then
86         DOWNLOADER="wget -nd --prefer-family=IPv4"
87         DOWNLOADER_NAME=wget
88         return
89     fi
90     if test_program_installed curl; then
91         DOWNLOADER="curl -L -f -O"
92         DOWNLOADER_NAME=curl
93         return
94     fi
95     $ECHO "error: wget or curl required"
96     exit_script 11
97 }
98
99 set_md5sum() {
100     if test_program_installed md5sum; then
101         MD5SUM=md5sum
102     else
103         MD5SUM="md5 -r"
104     fi
105 }
106
107 set_cc() {
108     # on Cygwin we MUST use the MinGW "cross-compiler", therefore check these first
109     # furthermore, we prefer 64 bit over 32 bit versions if both are available
110
111     # we need this condition so we don't find a mingw32 compiler on linux
112     if [[ $OS == windows ]] ; then
113         if test_programs_installed x86_64-w64-mingw32-gcc x86_64-w64-mingw32-g++; then
114             [ -z "$CC" ] && CC=x86_64-w64-mingw32-gcc
115             [ -z "$CXX" ] && CXX=x86_64-w64-mingw32-g++
116             return
117         fi
118
119         if test_programs_installed i686-w64-mingw32-gcc i686-w64-mingw32-g++; then
120             [ -z "$CC" ] && CC=i686-w64-mingw32-gcc
121             [ -z "$CXX" ] && CXX=i686-w64-mingw32-g++
122             return
123         fi
124     fi
125
126     if test_programs_installed clang clang++ ; then
127         [ -z "$CC" ] && CC=clang
128         [ -z "$CXX" ] && CXX=clang++
129         return
130     fi
131
132     # gcc and g++ will fail to correctly build Factor on Cygwin
133     if test_programs_installed gcc g++ ; then
134         [ -z "$CC" ] && CC=gcc
135         [ -z "$CXX" ] && CXX=g++
136         return
137     fi
138
139     $ECHO "error: high enough version of either (clang/clang++) or (gcc/g++) required!"
140     exit_script 10
141 }
142
143 set_make() {
144     case $OS in
145         freebsd) MAKE="gmake" ;;
146         *) MAKE="make" ;;
147     esac
148     if [[ $MAKE = "gmake" ]] ; then
149         ensure_program_installed gmake
150     fi
151 }
152
153 check_installed_programs() {
154     ensure_program_installed chmod
155     ensure_program_installed uname
156     ensure_program_installed git
157     ensure_program_installed wget curl
158     ensure_program_installed clang x86_64-w64-mingw32-gcc i686-w64-mingw32-gcc gcc
159     ensure_program_installed clang++ x86_64-w64-mingw32-g++ i686-w64-mingw32-g++ g++ cl
160     ensure_program_installed make gmake
161     ensure_program_installed md5sum md5
162     ensure_program_installed cut
163 }
164
165 check_library_exists() {
166     GCC_TEST=factor-library-test.c
167     GCC_OUT=factor-library-test.out
168     $ECHO -n "Checking for library $1..."
169     $ECHO "int main(){return 0;}" > $GCC_TEST
170     if $CC $GCC_TEST -o $GCC_OUT -l "$1" 2>&- ; then
171         $ECHO "not found."
172     else
173         $ECHO "found."
174     fi
175     $DELETE -f $GCC_TEST
176     check_ret $DELETE
177     $DELETE -f $GCC_OUT
178     check_ret $DELETE
179 }
180
181 check_X11_libraries() {
182     check_library_exists GL
183     check_library_exists X11
184     check_library_exists pango-1.0
185 }
186
187 check_gtk_libraries() {
188     check_library_exists gobject-2.0
189     check_library_exists gtk-x11-2.0
190     check_library_exists gdk-x11-2.0
191     check_library_exists gdk_pixbuf-2.0
192     check_library_exists gtkglext-x11-1.0
193     check_library_exists atk-1.0
194     check_library_exists gio-2.0
195     check_library_exists gdkglext-x11-1.0
196     check_library_exists pango-1.0
197 }
198
199
200 check_libraries() {
201     case $OS in
202         linux) check_X11_libraries
203                check_gtk_libraries ;;
204         unix) check_gtk_libraries ;;
205     esac
206 }
207
208 check_factor_exists() {
209     if [[ -d "factor" ]] ; then
210         $ECHO "A directory called 'factor' already exists."
211         $ECHO "Rename or delete it and try again."
212         exit_script 4
213     fi
214 }
215
216 find_os() {
217     if [[ -n $OS ]] ; then return; fi
218     $ECHO "Finding OS..."
219     local uname_s
220     uname_s=$(uname -s)
221     check_ret uname
222     case $uname_s in
223         CYGWIN_NT-5.2-WOW64) OS=windows ;;
224         *CYGWIN_NT*) OS=windows ;;
225         *CYGWIN*) OS=windows ;;
226         MINGW32*) OS=windows ;;
227         MINGW64*) OS=windows ;;
228         MSYS_NT*) OS=windows ;;
229         *darwin*) OS=macosx ;;
230         *Darwin*) OS=macosx ;;
231         *linux*) OS=linux ;;
232         *Linux*) OS=linux ;;
233         FreeBSD) OS=freebsd ;;
234         Haiku) OS=haiku ;;
235     esac
236 }
237
238 find_architecture() {
239     if [[ -n $ARCH ]] ; then return; fi
240     $ECHO "Finding ARCH..."
241     uname_m=$(uname -m)
242     check_ret uname
243     case $uname_m in
244        i386) ARCH=x86 ;;
245        i686) ARCH=x86 ;;
246        i86pc) ARCH=x86 ;;
247        amd64) ARCH=x86 ;;
248        ppc64) ARCH=ppc ;;
249        *86) ARCH=x86 ;;
250        *86_64) ARCH=x86 ;;
251        aarch64) ARCH=arm64 ;;
252        arm64) ARCH=arm64 ;;
253        iPhone5*[3-9]) ARCH=arm64 ;;
254        iPhone[6-9]*) ARCH=arm64 ;;
255        iPhone[1-9][0-9]*) ARCH=arm64 ;;
256        iPad[4-9]*) ARCH=arm64 ;;
257        iPad[1-9][0-9]*) ARCH=arm64 ;;
258        AppleTV[5-9]*) ARCH=arm64 ;;
259        AppleTV[1-9][0-9]*) ARCH=arm64 ;;
260        "Power Macintosh") ARCH=ppc ;;
261     esac
262 }
263
264 find_num_cores() {
265     $ECHO "Finding NUM_CORES..."
266     NUM_CORES=1
267     uname_s=$(uname -s)
268     check_ret uname
269     case $uname_s in
270         CYGWIN_NT-5.2-WOW64 | *CYGWIN_NT* | *CYGWIN* | MINGW32*) NUM_CORES=$NUMBER_OF_PROCESSORS ;;
271         *linux* | *Linux*) NUM_CORES=$(getconf _NPROCESSORS_ONLN || nproc) ;;
272         *darwin* | *Darwin* | freebsd) NUM_CORES=$(sysctl -n hw.ncpu) ;;
273     esac
274 }
275
276 find_word_size() {
277     if [[ -n $WORD ]] ; then return; fi
278     $ECHO "Finding WORD..."
279     WORD=$(getconf LONG_BIT || find_word_size_cpp || find_word_size_c)
280 }
281
282 find_word_size_cpp() {
283     SIXTY_FOUR='defined(__aarch64__) || defined(__x86_64__) || defined(_M_AMD64) || defined(__PPC64__) || defined(__64BIT__)'
284     THIRTY_TWO='defined(i386) || defined(__i386) || defined(__i386__) || defined(_MIX86)'
285     $CC -E -xc <(echo -e "#if ${SIXTY_FOUR}\n64\n#elif ${THIRTY_TWO}\n32\n#endif") | tail -1
286 }
287
288 find_word_size_c() {
289     C_WORD="factor-word-size"
290     TEST_PROGRAM="int main(){ return (long)(8*sizeof(void*)); }"
291     echo "$TEST_PROGRAM" | $CC -o $C_WORD -xc -
292     check_ret "$CC"
293     ./$C_WORD
294     WORD_OUT=$?
295     case $WORD_OUT in
296         32) ;;
297         64) ;;
298         *)
299             echo "Word size should be 32/64, got '$WORD_OUT'"
300             exit_script 15 ;;
301     esac
302     $DELETE -f $C_WORD
303     echo "$WORD_OUT"
304 }
305
306 set_factor_binary() {
307     case $OS in
308         windows) FACTOR_BINARY=factor.com ;;
309         *) FACTOR_BINARY=factor ;;
310     esac
311 }
312
313 set_factor_library() {
314     case $OS in
315         windows) FACTOR_LIBRARY=factor.dll ;;
316         macosx) FACTOR_LIBRARY=libfactor.dylib ;;
317         *) FACTOR_LIBRARY=libfactor.a ;;
318     esac
319 }
320
321 set_factor_image() {
322     FACTOR_IMAGE=factor.image
323     FACTOR_IMAGE_FRESH=factor.image.fresh
324 }
325
326 echo_build_info() {
327     $ECHO "OS=$OS"
328     $ECHO "ARCH=$ARCH"
329     $ECHO "NUM_CORES=$NUM_CORES"
330     $ECHO "WORD=$WORD"
331     $ECHO "DEBUG=$DEBUG"
332     $ECHO "REPRODUCIBLE=$REPRODUCIBLE"
333     $ECHO "CURRENT_BRANCH=$CURRENT_BRANCH"
334     $ECHO "FACTOR_BINARY=$FACTOR_BINARY"
335     $ECHO "FACTOR_LIBRARY=$FACTOR_LIBRARY"
336     $ECHO "FACTOR_IMAGE=$FACTOR_IMAGE"
337     $ECHO "MAKE_TARGET=$MAKE_TARGET"
338     $ECHO "BOOT_IMAGE=$BOOT_IMAGE"
339     $ECHO "MAKE_IMAGE_TARGET=$MAKE_IMAGE_TARGET"
340     $ECHO "GIT_PROTOCOL=$GIT_PROTOCOL"
341     $ECHO "GIT_URL=$GIT_URL"
342     $ECHO "CHECKSUM_URL=$CHECKSUM_URL"
343     $ECHO "BOOT_IMAGE_URL=$BOOT_IMAGE_URL"
344     $ECHO "DOWNLOADER=$DOWNLOADER"
345     $ECHO "CC=$CC"
346     $ECHO "CXX=$CXX"
347     $ECHO "MAKE=$MAKE"
348     $ECHO "COPY=$COPY"
349     $ECHO "DELETE=$DELETE"
350 }
351
352 check_os_arch_word() {
353     if ! [[ -n $OS && -n $ARCH && -n $WORD ]] ; then
354         $ECHO "OS: $OS"
355         $ECHO "ARCH: $ARCH"
356         $ECHO "WORD: $WORD"
357         $ECHO "OS, ARCH, or WORD is empty.  Please report this."
358
359         $ECHO $MAKE_TARGET
360         exit_script 5
361     fi
362 }
363
364 set_build_info() {
365     check_os_arch_word
366     if [[ $OS == linux && $ARCH == ppc ]] ; then
367         MAKE_IMAGE_TARGET=linux-ppc.32
368         MAKE_TARGET=linux-ppc-32
369     elif [[ $OS == linux && $ARCH == arm64 ]] ; then
370         MAKE_IMAGE_TARGET=unix-arm.64
371         MAKE_TARGET=linux-arm-64
372     elif [[ $OS == macosx && $ARCH == arm64 ]] ; then
373         MAKE_IMAGE_TARGET=unix-arm.64
374         MAKE_TARGET=macosx-arm64
375     elif [[ $OS == windows && $ARCH == x86 && $WORD == 64 ]] ; then
376         MAKE_IMAGE_TARGET=windows-x86.64
377         MAKE_TARGET=windows-x86-64
378     elif [[ $OS == windows && $ARCH == x86 && $WORD == 32 ]] ; then
379         MAKE_IMAGE_TARGET=windows-x86.32
380         MAKE_TARGET=windows-x86-32
381     elif [[ $ARCH == x86 && $WORD == 64 ]] ; then
382         MAKE_IMAGE_TARGET=unix-x86.64
383         MAKE_TARGET=$OS-x86-64
384     elif [[ $ARCH == x86 && $WORD == 32 ]] ; then
385         MAKE_IMAGE_TARGET=unix-x86.32
386         MAKE_TARGET=$OS-x86-32
387     else
388         MAKE_IMAGE_TARGET=$ARCH.$WORD
389         MAKE_TARGET=$OS-$ARCH-$WORD
390     fi
391     BOOT_IMAGE=boot.$MAKE_IMAGE_TARGET.image
392 }
393
394 parse_build_info() {
395     ensure_program_installed cut
396     $ECHO "Parsing make target from command line: $1"
397     OS=$(echo "$1" | cut -d '-' -f 1)
398     ARCH=$(echo "$1" | cut -d '-' -f 2)
399     WORD=$(echo "$1" | cut -d '-' -f 3)
400
401     if [[ $OS == linux && $ARCH == ppc ]] ; then WORD=32; fi
402     if [[ $OS == linux && $ARCH == arm ]] ; then WORD=32; fi
403     if [[ $OS == macosx && $ARCH == ppc ]] ; then WORD=32; fi
404
405     $ECHO "OS=$OS"
406     $ECHO "ARCH=$ARCH"
407     $ECHO "WORD=$WORD"
408 }
409
410 find_build_info() {
411     find_os
412     find_architecture
413     find_num_cores
414     set_cc
415     find_word_size
416     set_current_branch
417     set_factor_binary
418     set_factor_library
419     set_factor_image
420     set_build_info
421     set_downloader
422     set_boot_image_vars
423     set_make
424     echo_build_info
425 }
426
427 invoke_git() {
428     git "$@"
429     check_ret git
430 }
431
432 git_clone() {
433     $ECHO "Downloading the git repository from github.com..."
434     invoke_git clone "$GIT_URL"
435 }
436
437 update_script_name() {
438     $ECHO "$(dirname "$0")/_update.sh"
439 }
440
441 update_script() {
442     local -r update_script=$(update_script_name)
443     local -r bash_path=$(which bash)
444     $ECHO "updating from ${CURRENT_BRANCH}"
445     $ECHO "#!$bash_path" >"$update_script"
446     $ECHO "git pull ${GIT_URL} ${CURRENT_BRANCH} >>$update_script"
447     $ECHO "if [[ \$? -eq 0 ]]; then exec \"$0\" $SCRIPT_ARGS; else echo \"git pull failed\"; exit 2; fi" \
448         >>"$update_script"
449     $ECHO "exit 0" >>"$update_script"
450
451     chmod 755 "$update_script"
452     exec "$update_script"
453 }
454
455 update_script_changed() {
456     invoke_git diff --stat "$(invoke_git merge-base HEAD FETCH_HEAD)" FETCH_HEAD | grep 'build\.sh' >/dev/null
457 }
458
459 git_fetch() {
460     $ECHO "Fetching the git repository from github.com..."
461     set_current_branch
462
463     rm -f "$(update_script_name)"
464     $ECHO git fetch "$GIT_URL" "${CURRENT_BRANCH}"
465     invoke_git fetch "$GIT_URL" "${CURRENT_BRANCH}"
466
467     if update_script_changed; then
468         $ECHO "Updating and restarting the build.sh script..."
469         update_script
470     else
471         $ECHO "Updating the working tree..."
472         invoke_git pull "$GIT_URL" "${CURRENT_BRANCH}"
473     fi
474 }
475
476 cd_factor() {
477     cd "factor" || exit 12
478     check_ret cd
479 }
480
481 set_copy() {
482     case $OS in
483         windows) COPY="cp" ;;
484         *) COPY="cp" ;;
485     esac
486 }
487
488 set_delete() {
489     case $OS in
490         windows) DELETE="rm" ;;
491         *) DELETE="rm" ;;
492     esac
493 }
494
495 backup_factor() {
496     $ECHO "Backing up factor..."
497     $COPY $FACTOR_BINARY $FACTOR_BINARY.bak
498     $COPY $FACTOR_LIBRARY $FACTOR_LIBRARY.bak
499     $COPY "$BOOT_IMAGE" "$BOOT_IMAGE.bak"
500     $COPY $FACTOR_IMAGE $FACTOR_IMAGE.bak
501     $ECHO "Done with backup."
502 }
503
504 check_makefile_exists() {
505     if [[ ! -e "GNUmakefile" ]] ; then
506         $ECHO ""
507         $ECHO "***GNUmakefile not found***"
508         $ECHO "You are likely in the wrong directory."
509         $ECHO "Run this script from your factor directory:"
510         $ECHO "     ./build.sh"
511         exit_script 6
512     fi
513 }
514
515 invoke_make() {
516     check_makefile_exists
517     if [ -n "$MAKE_OPTS" ]; then
518         "$MAKE" "$MAKE_OPTS" "$@"
519     else
520         "$MAKE" "$@"
521     fi
522     check_ret $MAKE
523 }
524
525 make_clean() {
526     invoke_make clean
527 }
528
529 make_factor() {
530     $ECHO "Building factor with $NUM_CORES cores"
531     invoke_make "CC=$CC" "CXX=$CXX" "$MAKE_TARGET" "-j$NUM_CORES"
532 }
533
534 make_clean_factor() {
535     make_clean
536     make_factor
537 }
538
539 current_git_branch() {
540     # git rev-parse --abbrev-ref HEAD # outputs HEAD for detached head
541     # outputs nothing for detached HEAD, which is fine for ``git fetch``
542     git describe --all --exact-match 2>/dev/null | sed 's=.*/=='
543 }
544
545 check_url() {
546     if [[ $DOWNLOADER_NAME == 'wget' ]]; then
547     if wget -S --spider --prefer-family=IPv4 "$1" 2>&1 | grep -q 'HTTP/1.1 200 OK'; then
548             return 0
549         else
550             return 1
551         fi
552     elif [[ $DOWNLOADER_NAME == 'curl' ]]; then
553         local code
554         code=$(curl -4 -sL -w "%{http_code}\\n" "$1" -o /dev/null)
555         if [[ $code -eq 200 ]]; then return 0; else return 1; fi
556     else
557         $ECHO "error: wget or curl required in check_url"
558         exit_script 12
559     fi
560 }
561
562 # If we are on a branch, first try to get a boot image for that branch.
563 # Otherwise, just use `master`
564 set_boot_image_vars() {
565     set_current_branch
566     local url="https://downloads.factorcode.org/images/${CURRENT_BRANCH}/checksums.txt"
567     $ECHO "Getting checksum from ${url}"
568     check_url $url
569     if [[ $? -eq 0 ]]; then
570         $ECHO "got checksum!"
571         CHECKSUM_URL="$url"
572         BOOT_IMAGE_URL="https://downloads.factorcode.org/images/${CURRENT_BRANCH}/${BOOT_IMAGE}"
573     else
574         $ECHO "boot image for branch \`${CURRENT_BRANCH}\` is not on server, trying master instead"
575         $ECHO "  tried nonexistent url: ${url}"
576         CHECKSUM_URL="https://downloads.factorcode.org/images/master/checksums.txt"
577         BOOT_IMAGE_URL="https://downloads.factorcode.org/images/master/${BOOT_IMAGE}"
578     fi
579 }
580
581 set_current_branch() {
582     if [ -n "${CI_BRANCH}" ]; then
583         CURRENT_BRANCH="${CI_BRANCH}"
584     else
585         CURRENT_BRANCH=$(current_git_branch)
586     fi
587 }
588
589 update_boot_image() {
590     set_boot_image_vars
591     $ECHO "Deleting old images..."
592     $DELETE checksums.txt* > /dev/null 2>&1
593     # delete boot images with one or two characters after the dot
594     $DELETE "$BOOT_IMAGE".{?,??} > /dev/null 2>&1
595     $DELETE temp/staging.*.image > /dev/null 2>&1
596     if [[ -f $BOOT_IMAGE ]] ; then
597         get_url "$CHECKSUM_URL"
598         local factorcode_md5
599         factorcode_md5=$(grep "$BOOT_IMAGE" checksums.txt | cut -f2 -d' ')
600         set_md5sum
601         local disk_md5
602         disk_md5=$($MD5SUM "$BOOT_IMAGE" | cut -f1 -d' ')
603         $ECHO "Factorcode md5: $factorcode_md5";
604         $ECHO "Disk md5: $disk_md5";
605         if [[ "$factorcode_md5" == "$disk_md5" ]] ; then
606             $ECHO "Your disk boot image matches the one on downloads.factorcode.org."
607         else
608             $DELETE "$BOOT_IMAGE" > /dev/null 2>&1
609             get_boot_image
610         fi
611     else
612         get_boot_image
613     fi
614 }
615
616 get_boot_image() {
617     $ECHO "Downloading boot image $BOOT_IMAGE."
618     get_url "${BOOT_IMAGE_URL}"
619 }
620
621 get_url() {
622     if [[ -z $DOWNLOADER ]] ; then
623         set_downloader;
624     fi
625     $ECHO "$DOWNLOADER" "$1" ;
626     $DOWNLOADER "$1"
627     check_ret "$DOWNLOADER"
628 }
629
630 get_config_info() {
631     find_build_info
632     check_installed_programs
633     check_libraries
634 }
635
636 copy_fresh_image() {
637     $ECHO "Copying $FACTOR_IMAGE to $FACTOR_IMAGE_FRESH..."
638     $COPY $FACTOR_IMAGE $FACTOR_IMAGE_FRESH
639 }
640
641 bootstrap() {
642     ./$FACTOR_BINARY -i="$BOOT_IMAGE"
643     check_ret "./$FACTOR_BINARY bootstrap failed"
644     copy_fresh_image
645 }
646
647 install() {
648     check_factor_exists
649     get_config_info
650     git_clone
651     cd_factor
652     make_factor
653     set_boot_image_vars
654     get_boot_image
655     bootstrap
656 }
657
658 update() {
659     get_config_info
660     git_fetch
661     backup_factor
662     make_clean_factor
663 }
664
665 download_and_bootstrap() {
666     update_boot_image
667     bootstrap
668 }
669
670 net_bootstrap_no_pull() {
671     get_config_info
672     make_clean_factor
673     download_and_bootstrap
674 }
675
676 refresh_image() {
677     ./$FACTOR_BINARY -e="USING: vocabs.loader vocabs.refresh system memory ; refresh-all save 0 exit"
678     check_ret factor
679 }
680
681 make_boot_image() {
682     ./$FACTOR_BINARY -run="bootstrap.image" "$MAKE_IMAGE_TARGET"
683     check_ret factor
684 }
685
686 install_deps_apt() {
687     sudo apt install --yes libc6-dev libpango1.0-dev libx11-dev xorg-dev libgtk2.0-dev gtk2-engines-pixbuf libgtkglext1-dev wget git git-doc rlwrap clang make screen tmux libssl-dev
688     check_ret sudo
689 }
690
691 install_deps_pacman() {
692     sudo pacman --noconfirm -Syu gcc clang make rlwrap git wget pango glibc gtk2 gtk3 gtkglext gtk-engines gdk-pixbuf2 libx11 screen tmux
693     check_ret sudo
694 }
695
696 install_deps_dnf() {
697     sudo dnf --assumeyes install gcc gcc-c++ glibc-devel binutils libX11-devel pango-devel gtk3-devel gdk-pixbuf2-devel gtkglext-devel tmux rlwrap wget
698     check_ret sudo
699 }
700
701 install_deps_pkg() {
702     sudo pkg install --yes bash git gmake gcc rlwrap ripgrep curl gmake x11-toolkits/gtk30 x11-toolkits/gtkglext pango cairo vim
703 }
704
705
706 install_deps_macosx() {
707     if test_program_installed git; then
708         ensure_program_installed yes
709         $ECHO "git not found."
710         $ECHO "This script requires either git-core or port."
711         $ECHO "If it fails, install git-core or port and try again."
712         ensure_program_installed port
713         $ECHO "Installing git-core with port...this will take awhile."
714         yes | sudo port install git-core
715     fi
716 }
717
718 usage() {
719     $ECHO "usage: $0 command [optional-target]"
720     $ECHO "  install - git clone, compile, bootstrap"
721     $ECHO "  deps-apt - install required packages for Factor on Linux using apt"
722     $ECHO "  deps-pacman - install required packages for Factor on Linux using pacman"
723     $ECHO "  deps-dnf - install required packages for Factor on Linux using dnf"
724     $ECHO "  deps-pkg - install required packages for Factor on FreeBSD using pkg"
725     $ECHO "  deps-macosx - install git on MacOSX using port"
726     $ECHO "  self-bootstrap - make local boot image, bootstrap"
727     $ECHO "  self-update - git pull, recompile, make local boot image, bootstrap"
728     $ECHO "  quick-update - git pull, refresh-all, save"
729     $ECHO "  update|latest - git pull, recompile, download a boot image, bootstrap"
730     $ECHO "  compile - compile the binary"
731     $ECHO "  recompile - recompile the binary"
732     $ECHO "  bootstrap - bootstrap with existing boot image"
733     $ECHO "  net-bootstrap - recompile, download a boot image, bootstrap"
734     $ECHO "  make-target - find and print the os-arch-cpu string"
735     $ECHO "  report|info - print the build variables"
736     $ECHO "  full-report - print the build variables, check programs and libraries"
737     $ECHO "  update-boot-image - get the boot image for the current branch"
738     $ECHO ""
739     $ECHO "If you are behind a firewall, invoke as:"
740     $ECHO "env GIT_PROTOCOL=http $0 <command>"
741     $ECHO ""
742     $ECHO "Example for overriding the default target:"
743     $ECHO "    $0 update macosx-x86-32"
744 }
745
746 MAKE_TARGET=unknown
747
748 # -n is nonzero length, -z is zero length
749 if [[ -n "$2" ]] ; then
750     parse_build_info "$2"
751 fi
752
753 if [ "$#" -gt 3 ]; then
754     usage
755     $ECHO "error: too many arguments"
756     exit 1
757 fi
758
759
760 set_copy
761 set_delete
762
763 case "$1" in
764     install) install ;;
765     deps-apt) install_deps_apt ;;
766     deps-pacman) install_deps_pacman ;;
767     deps-macosx) install_deps_macosx ;;
768     deps-dnf) install_deps_dnf ;;
769     deps-pkg) install_deps_pkg ;;
770     self-bootstrap) get_config_info; make_boot_image; bootstrap  ;;
771     self-update) update; make_boot_image; bootstrap  ;;
772     quick-update) update; refresh_image ;;
773     update|latest) update; download_and_bootstrap ;;
774     compile) find_build_info; make_factor ;;
775     recompile) find_build_info; make_clean; make_factor ;;
776     bootstrap) get_config_info; bootstrap ;;
777     net-bootstrap) net_bootstrap_no_pull ;;
778     make-target) FIND_MAKE_TARGET=true; ECHO=false; find_build_info; exit_script 0;;
779     report|info) find_build_info ;;
780     full-report) find_build_info; check_installed_programs; check_libraries ;;
781     update-boot-image) find_build_info; check_installed_programs; update_boot_image ;;
782     *) usage ;;
783 esac
784