--- gforth/libcc.fs 2007/12/31 18:40:24 1.28 +++ gforth/libcc.fs 2008/04/25 22:17:17 1.32 @@ -123,7 +123,16 @@ \ first-time word, then to the run-time word; the run-time word calls \ the c function. -: delete-file 2drop 0 ; +[ifundef] parse-name + ' parse-word alias parse-name +[then] +[ifundef] defer! +: defer! ( xt xt-deferred -- ) \ gforth defer-store +\G Changes the @code{defer}red word @var{xt-deferred} to execute @var{xt}. + >body [ has? rom [IF] ] @ [ [THEN] ] ! ; +[then] + +\ : delete-file 2drop 0 ; require struct.fs @@ -363,7 +372,7 @@ create gen-par-types ." ," gen-par-n ." ," gen-par-n ." )" ; : gen-wrapped-r ( pars c-name fp-change1 sp-change1 -- fp-change sp-change ) - 2dup gen-par-r 2>r ." =" gen-wrapped-void 2r> ; + 2dup gen-par-r 2>r ." =" gen-wrapped-call 2r> ; : gen-wrapped-func ( pars c-name fp-change1 sp-change1 -- fp-change sp-change ) gen-wrapped-a ; @@ -435,7 +444,7 @@ create gen-wrapped-types : .lib-error ( -- ) [ifdef] lib-error ['] cr stderr outfile-execute - lib-error ['] type outfile-execute + lib-error ['] type stderr outfile-execute [then] ; DEFER compile-wrapper-function @@ -446,6 +455,7 @@ DEFER compile-wrapper-function s" includedir" getenv append ] sliteral s" -O -c " s+ lib-filename 2@ append s" .c -o " append lib-filename 2@ append s" .lo" append ( c-addr u ) +\ cr 2dup type 2dup system drop free throw $? abort" libtool compile failed" [ libtool-command s" --silent --mode=link gcc -module -rpath " s+ ] sliteral tempdir s+ s" " append @@ -453,6 +463,7 @@ DEFER compile-wrapper-function lib-filename 2@ append s" .la" append ( c-addr u ) 2dup system drop free throw $? abort" libtool link failed" lib-filename 2@ s" .la" s+ +\ 2dup type cr 2dup open-lib dup 0= if .lib-error true abort" open-lib failed" endif