默认情况下,Forth只有少量的工作库,因此所有东西都必须从头开始编程。原因是,基于堆栈的Forth虚拟机将自己标识为一个瘦系统。
根据Gforth手册,可以使用现有的C库,并访问用C编写的预编译图形库和游戏引擎。在Forth中包含C库之前,最好在普通的C项目中测试该库。
我用C从头开始创建了一个库。它提供了一个添加函数,可以从主程序中调用。文件经过编译和链接,运行良好。
### add.c ###
int add(int a, int b) {
return a + b;
}
### add.h ###
int add(int, int);
### main.c ###
#include <stdio.h>
#include "add.h"
void main() {
printf("5 + 7 = %dn", add(5,7));
}
### compile ###
gcc -c -fPIC add.c
gcc -c main.c
gcc main.o add.o
./a.out
5 + 7 = 12
计划是使用这个来自Forth的预编译c库。Gforth编译器为此提供了一个特殊的关键字,它将Forth程序与C库连接起来。不幸的是,我收到一条错误消息,说找不到库。即使手动将其复制到Gforth文件夹,错误消息也不会消失。
### Forth source code ###
c #include "add.h"
c-function add add n n -- n
5 7 add .
bye
### Execution ###
gforth "main.fs"
/home/user1/.gforth/libcc-tmp/gforth_c_7F5655710258.c:2:10: fatal error: add.h: No such file or directory
#include "add.h"
^~~~~~~
compilation terminated.
in file included from *OS command line*:-1
b.fs:3: libtool compile failed
5 7 >>>add<<< .
Backtrace:
$7F56556BD988 throw
$7F56556F9798 c(abort")
$7F56556F9F08 compile-wrapper-function
gforth: symbol lookup error: /home/user1/.gforth/libcc-tmp/.libs/gforth_c_7F0593846258.so.0: undefined symbol: add
### Copy missing file and execute again ###
cp add.h /home/user1/.gforth/libcc-tmp/
gforth "main.fs"
gforth: symbol lookup error: /home/user1/.gforth/libcc-tmp/.libs/gforth_c_7F5256AC2258.so.0: undefined symbol: add
"Forth-to-C接口"出了什么问题?
您必须将add
声明为要导出的函数,将其编译为共享库(例如libadd.so
),并使用add-lib
字添加此库,请参阅声明操作系统级库。
s" add" add-lib
注意:前缀"lib"和后缀".so"是自动添加的。