ファイルを C ファイルに変換しようとしてい.spl
ます (コンパイラがないため)。サンプルの "Hello World" .spl ファイルがあり、Shakespeare プログラミング言語 .tar
をダウンロードして解凍しましたが、次に何をすればよいかわかりません。どのドキュメントにも指示が見つからないようです。誰でも助けることができますか?
編集:
と入力するとmake -f "Makefile"
、次の出力が得られます。
bison --verbose -d grammar.y
gcc -O2 -Wall -c grammar.tab.c
gcc -O2 -Wall -c makescanner.c
gcc makescanner.o -O2 -Wall -o makescanner
./makescanner include > scanner.l
flex -Cem -t scanner.l > scanner.c
scanner.l:600: warning, rule cannot be matched
gcc -O2 -Wall -c scanner.c
<stdout>:5823: warning: ‘yyunput’ defined but not used
gcc -O2 -Wall -c strutils.c
gcc grammar.tab.o scanner.o strutils.o -O2 -Wall -lfl -o spl2c
ld: library not found for -lfl
collect2: ld returned 1 exit status
make: *** [spl2c] Error 1