| \ You should have received a copy of the GNU General Public License |
\ You should have received a copy of the GNU General Public License |
| \ along with this program. If not, see http://www.gnu.org/licenses/. |
\ along with this program. If not, see http://www.gnu.org/licenses/. |
| |
|
| s" os-type" environment? [IF] |
libffi-present [if] |
| 2dup s" linux-gnu" str= [IF] 2drop |
require ./libffi.fs |
| cell 8 = [IF] s" /usr/lib64/libffi.so" [ELSE] s" libffi.so" [THEN] |
[else] |
| [ELSE] 2dup s" bsd" search nip nip [IF] 2drop s" libffi.so" |
ffcall-present [if] |
| [ELSE] 2dup s" cygwin" str= [IF] 2drop s" libffi.dll" |
require ./fflib.fs |
| [ELSE] 2dup s" darwin" string-prefix? [IF] 2drop s" libffi.dylib" |
[else] |
| [ELSE] 2drop s" libffi" [THEN] [THEN] [THEN] [THEN] [THEN] |
.( Neither libffi nor ffcall are configured ) cr |
| open-lib [if] |
.( If you have installed one of them, you can use libffi.fs or fflib.fs directly ) cr |
| \ warnings @ [IF] .( including libffi.fs ) [THEN] |
.( Or you can just use the new, documented and better, but different, libcc.fs ) cr |
| include libffi.fs |
|
| [ELSE] |
|
| s" libavcall.so" open-lib 0<> |
|
| s" libcallback.so" open-lib 0<> and [if] |
|
| \ warnings @ [IF] .( including fflib.fs [ffcall] ) [THEN] |
|
| include fflib.fs |
|
| [ELSE] |
|
| .( Neither libffi nor ffcall are available ) cr |
|
| abort |
abort |
| .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr |
[then] |
| include oldlib.fs |
[then] |
| [THEN] |
|
| [THEN] |
|
| |
|
| \ testing stuff |
\ testing stuff |
| |
|
| [IFUNDEF] libc |
\ [IFUNDEF] libc |
| s" os-type" environment? [IF] |
\ s" os-type" environment? [IF] |
| 2dup s" linux-gnu" str= [IF] 2drop |
\ 2dup s" linux-gnu" str= [IF] 2drop |
| cell 8 = [IF] |
\ cell 8 = [IF] |
| library libc /lib64/libc.so.6 |
\ library libc /lib64/libc.so.6 |
| [ELSE] |
\ [ELSE] |
| library libc /lib/libc.so.6 |
\ library libc /lib/libc.so.6 |
| [THEN] |
\ [THEN] |
| [ELSE] 2dup s" cygwin" str= [IF] 2drop |
\ [ELSE] 2dup s" cygwin" str= [IF] 2drop |
| library libc cygwin1.dll |
\ library libc cygwin1.dll |
| [ELSE] 2dup s" bsd" search nip nip [IF] 2drop |
\ [ELSE] 2dup s" bsd" search nip nip [IF] 2drop |
| library libc libc.so |
\ library libc libc.so |
| [ELSE] 2dup s" darwin" string-prefix? [IF] 2drop |
\ [ELSE] 2dup s" darwin" string-prefix? [IF] 2drop |
| library libc libc.dylib |
\ library libc libc.dylib |
| [ELSE] 2drop \ or add your stuff here |
\ [ELSE] 2drop \ or add your stuff here |
| [THEN] |
\ [THEN] |
| [THEN] |
\ [THEN] |
| [THEN] |
\ [THEN] |
| [THEN] |
\ [THEN] |
| [THEN] |
\ [THEN] |
| [THEN] |
\ [THEN] |
| |
|
| [ifdef] testing |
[ifdef] testing |
| |
|