Ignore:
Timestamp:
11/21/10 19:40:25 (13 years ago)
Author:
Mark Evenson
Message:

Reworked Lisp-based build now works for ecl.

Based on a patch from Pascal J. Bourguignon.

Refactored elements of Lisp-based build to improve error handling and
present more of a informative view of what is occuring.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/build-from-lisp.sh

    r12052 r13041  
    7373}
    7474
     75ecl()
     76{
     77    exec "$1" -norc -load "$2" -eval "(progn $3 (ext:quit))"
     78}
     79
    7580clisp()
    7681{
     
    121126        notimplemented "$IMPL" "$FILE" "$FORM" ;;
    122127    ecl*)
    123         notimplemented "$IMPL" "$FILE" "$FORM" ;;
     128        ecl   "$IMPL" "$FILE" "$FORM"          ;;
    124129    alisp*)
    125130        notimplemented "$IMPL" "$FILE" "$FORM" ;;
Note: See TracChangeset for help on using the changeset viewer.