Overview
Comment: | Updates to Makefile so that it should be able to build chicken, sqlite3, nanomsg, iup and all needed eggs from scratch. Currently only in pwd/build/ directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-newview |
Files: | files | file ages | folders |
SHA1: |
220b14a861c4883ff947e46ea39af32c |
User & Date: | jmoon18 on 2020-04-27 15:23:08 |
Other Links: | branch diff | manifest | tags |
Context
2020-04-27
| ||
16:23 | Makefile: chicken target now depends on a CHICKEN_PREFIX variable. Seems to build find on sles11. Next steps to modularize so it can be plugged in for various platforms check-in: d825e32743 user: jmoon18 tags: v1.65-newview | |
15:23 | Updates to Makefile so that it should be able to build chicken, sqlite3, nanomsg, iup and all needed eggs from scratch. Currently only in pwd/build/ directory check-in: 220b14a861 user: jmoon18 tags: v1.65-newview | |
2020-04-24
| ||
17:21 | Fixed chicken build in Makefile check-in: 8724301727 user: jmoon18 tags: v1.65-newview | |
Changes
Modified Makefile from [bed9599960] to [5c432e409b].
︙ | |||
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 | + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + - + | unit : cd tests;make unit #====================================================================== # Chicken build #====================================================================== tgz/sqlite-autoconf-3090200.tar.gz : mkdir -p tgz curl http://www.sqlite.org/2015/sqlite-autoconf-3090200.tar.gz > tgz/sqlite-autoconf-3090200.tar.gz tgz/nanomsg-1.0.0.tar.gz : wget --no-check-certificate https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz mv 1.0.0.tar.gz tgz/nanomsg-1.0.0.tar.gz tgz/chicken-4.13.0.tar.gz : mkdir -p tgz curl https://code.call-cc.org/releases/4.13.0/chicken-4.13.0.tar.gz > tgz/chicken-4.13.0.tar.gz tgz/ffcall.tar.gz : wget -c -O tgz/ffcall.tar.gz 'http://www.kiatoa.com/fossils/ffcall/tarball?name=ffcall&uuid=trunk' build/sqlite-autoconf-3090200/configure : tgz/sqlite-autoconf-3090200.tar.gz mkdir -p build; cd build; tar xf ../tgz/sqlite-autoconf-3090200.tar.gz build/lib/libnanomsg.so : tgz/nanomsg-1.0.0.tar.gz cd tgz; tar -xzvf nanomsg-1.0.0.tar.gz cd tgz/nanomsg-1.0.0; mkdir build; cd build; cd tgz/nanomsg-1.0.0/build; cmake ../ -DCMAKE_INSTALL_PREFIX=`pwd`/../../../build/ cd tgz/nanomsg-1.0.0/build; make; make install build/chicken-4.13.0/LICENSE : tgz/chicken-4.13.0.tar.gz mkdir -p build/eggs-installed cd build;tar xf ../tgz/chicken-4.13.0.tar.gz tgz/opensrc.fossil : cd tgz; fossil clone http://www.kiatoa.com/fossils/opensrc opensrc.fossil mkdir tgz/opensrc cd tgz/opensrc; fossil open --nested ../opensrc.fossil; fossil up; fossil uv sync |
︙ |