为了翻译hello.spl
成 C,我运行./spl2c <hello.spl> hello.c
它工作正常。
接下来我运行gcc hello.c
,但我收到此错误:
fatal error: spl.h: No such file or directory
.
spl.h
并且hello.c
在同一个目录中。我试图将 include 语句hello.c
从#include <spl.h>
to更改为#include "spl.h"
,但是在运行时出现了几个错误,gcc hello.c
例如:
undefined reference to 'global_initialize'
undefined reference to 'initialize_character'
谁能告诉我发生了什么事?