ฉันดาวน์โหลดซอร์สโค้ดและต้องการรวบรวมไฟล์สแกนเนอร์ มันทำให้เกิดข้อผิดพลาดนี้:
[meepo@localhost cs143-pp1]$ gcc -o lex.yy.o lex.yy.c -ll
In file included from scanner.l:15:0:
scanner.h:59:5: error: unknown type name ‘bool’
In file included from scanner.l:16:0:
utility.h:64:38: error: unknown type name ‘bool’
utility.h:74:1: error: unknown type name ‘bool’
In file included from scanner.l:17:0:
errors.h:16:18: fatal error: string: No such file or directory
compilation terminated.
และฉันพยายามใช้คอมไพล์ที่แตกต่างกัน แต่มันมีข้อผิดพลาดที่แตกต่างกัน
[meepo@localhost cs143-pp1]$ g++ -o scan lex.yy.c -ll
/usr/bin/ld: cannot find -ll
collect2: ld returned 1 exit status
ระบบปฏิบัติการของฉันคือ 3.0-ARCH ฉันไม่รู้ว่าทำไมถึงเกิดขึ้น ฉันจะแก้ไขข้อผิดพลาดได้อย่างไร
#include <stdbool.h>