Overview
Comment: | Dashboard starts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6584-nanomsg |
Files: | files | file ages | folders |
SHA1: |
0c6edac10be719045bcc566c9fc35108 |
User & Date: | matt on 2021-11-10 05:21:21 |
Other Links: | branch diff | manifest | tags |
Context
2021-11-10
| ||
06:20 | wip check-in: 71e57ac100 user: matt tags: v1.6584-nanomsg | |
05:21 | Dashboard starts check-in: 0c6edac10b user: matt tags: v1.6584-nanomsg | |
2021-11-08
| ||
20:48 | dashboard almost starts check-in: 23a7cfadcb user: matt tags: v1.6584-nanomsg | |
Changes
Added build-assist/ck5 version [a0370c68ea].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | #!/bin/bash export PATH=/home/matt/data/buildall/ck5.2/bin:$PATH if [[ -z /home/matt/data/buildall/ck5.2/lib:/home/matt/data/buildall/ck5.2/lib64 ]];then export LD_LIBRARY_PATH=/home/matt/data/buildall/ck5.2/lib:/home/matt/data/buildall/ck5.2/lib64:$LD_LIBRARY_PATH else export LD_LIBRARY_PATH=/home/matt/data/buildall/ck5.2/lib:/home/matt/data/buildall/ck5.2/lib64 fi export CHICKEN_DOC_PAGER=cat exec "$@" |
Modified build-assist/iup-compile.sh from [c7804b1ba8] to [a1231c7291].
︙ | ︙ | |||
8 9 10 11 12 13 14 | echo " 2. list the unversioned files and export the cd, im and iup lib for your kernel (try uname -a for the kernel number) 4.15 ==> 415_64" echo " 3. untar iup, im and cp tars into a clean working dir and then copy:" echo " cp *.a *.so $PREFIX/lib" echo " cp include/*.h $PREFIX/include" echo " 4. run the chicken-install like this:" echo "If you use a wrapper (e.g. ck5) to create the chicken environment:" | | > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | echo " 2. list the unversioned files and export the cd, im and iup lib for your kernel (try uname -a for the kernel number) 4.15 ==> 415_64" echo " 3. untar iup, im and cp tars into a clean working dir and then copy:" echo " cp *.a *.so $PREFIX/lib" echo " cp include/*.h $PREFIX/include" echo " 4. run the chicken-install like this:" echo "If you use a wrapper (e.g. ck5) to create the chicken environment:" echo "CSC_OPTIONS=\"-I$PREFIX/include -I$PREFIX/include/im -I$PREFIX/include/cd -I$PREFIX/include/iup -L$PREFIX/lib -C -std=gnu99\" ck5 chicken-install iup -feature disable-iup-matrixex" echo "else:" echo "CSC_OPTIONS=\"-I$PREFIX/include -I$PREFIX/include/im -I$PREFIX/include/cd -I$PREFIX/include/iup -L$PREFIX/lib -C -std=gnu99\" chicken-install iup" echo "Then repeat for canvas-draw" # (export PREFIX=/home/matt/data/buildall/ck5.2;CSC_OPTIONS="-I/home/matt/data/buildall/ck5.2/include -I/home/matt/data/buildall/ck5.2/include/im -I/home/matt/data/buildall/ck5.2/include/cd -I/home/matt/data/buildall/ck5.2/include/iup -L/home/matt/data/buildall/ck5.2/lib -C -std=gnu99" ck5 chicken-install iup -feature disable-iup-matrixex) |
Modified dashboard.scm from [f51aa849a8] to [5fed6bd43c].
︙ | ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 | (declare (uses mtver)) (declare (uses processmod)) (declare (uses runsmod)) (declare (uses rmtmod)) (declare (uses subrunmod)) (declare (uses tree)) (declare (uses vgmod)) ;; (declare (uses dashboard-guimonitor)) ;; (declare (uses dashboard-main)) (import (prefix iup iup:)) (import canvas-draw) | > < | | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | (declare (uses mtver)) (declare (uses processmod)) (declare (uses runsmod)) (declare (uses rmtmod)) (declare (uses subrunmod)) (declare (uses tree)) (declare (uses vgmod)) (declare (uses testsmod)) ;; (declare (uses dashboard-guimonitor)) ;; (declare (uses dashboard-main)) (import (prefix iup iup:)) (import canvas-draw) (import canvas-draw-iup) (import ducttape-lib bigmod) (import (prefix sqlite3 sqlite3:) srfi-1 chicken.file.posix |
︙ | ︙ | |||
89 90 91 92 93 94 95 | runsmod rmtmod subrunmod vgmod dcommon tree dashboard-context-menu | | > | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | runsmod rmtmod subrunmod vgmod dcommon tree dashboard-context-menu dashboard-tests testsmod) (define help (conc "Megatest Dashboard, documentation at http://www.kiatoa.com/fossils/megatest version " megatest-version " license GPL, Copyright (C) Matt Welland 2012-2017 Usage: dashboard [options] |
︙ | ︙ |