- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 mingw 编译莎士比亚编程语言,在编译过程中出现以下错误。
c:/users/neil/mingw/bin/../lib/gcc/mingw32/4.5.2/../../../../mingw32/bin/ld.exe:
cannot find -lfl
collect2: ld returned 1 exit status
mingw32-make: *** [spl2c] Error 1
我在谷歌上搜索了一下,发现有几个人遇到了 ld.exe 的问题,但他们中的大多数人都遇到了其他标志的问题,找不到任何有用的东西。-lfl
标志有什么作用,我该如何解决这个问题?编辑:我已经从 http://gnuwin32.sourceforge.net/ 下载了 flex 二进制文件并将它们添加到我的路径中。
这是我的Makefile
:
########################################################################
#
# SPL, the Shakespeare Programming Language
#
# Copyright (C) 2001 Karl Hasselström and Jon Åslund
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
# USA.
#
########################################################################
NAME = spl
VERSION = 1.2.1
DISTNAME = $(NAME)-$(VERSION)
# compiler commands
AR = ar
CC = gcc
LEX = flex
RANLIB = ranlib
TAR = tar
YACC = bison
INCLUDEPATH = include
EDITORPATH = editor
EXAMPLEPATH = examples
# source / outputs
MAKESCANNERINCLUDE = $(wildcard $(INCLUDEPATH)/*.{wordlist,metaflex})
# compiler flags
YACCFLAGS = --verbose
CCFLAGS = -O2 -Wall -LC:/Users/Neil/Downloads/Exes/flex-2.5.4a-1-bin
LEXFLAGS = -Cem
.PHONY: all clean examples install libspl tar
all: install examples
examples: install
$(MAKE) -C $(EXAMPLEPATH) all
grammar.tab.h grammar.tab.c: grammar.y
$(YACC) $(YACCFLAGS) -d $<
grammar.tab.o: grammar.tab.c grammar.tab.h telma.h
$(CC) $(CCFLAGS) -c $<
install: spl2c libspl.a spl.h
mkdir -p spl/bin spl/include spl/lib
cp -pf spl2c spl/bin
cp -pf spl.h spl/include
cp -pf libspl.a spl/lib
libspl.a: libspl.o strutils.o
$(AR) rc $@ $^
$(RANLIB) $@
libspl.o: libspl.c spl.h
$(CC) $(CCFLAGS) -c $<
makescanner: makescanner.o
$(CC) $< $(CCFLAGS) -o $@
makescanner.o: makescanner.c
$(CC) $(CCFLAGS) -c $<
scanner.c: scanner.l
$(LEX) $(LEXFLAGS) -t $< > $@
scanner.l: makescanner $(MAKESCANNERINCLUDE)
$< $(INCLUDEPATH) > $@ #remove ./
scanner.o: scanner.c grammar.tab.h telma.h
$(CC) $(CCFLAGS) -c $<
spl2c: grammar.tab.o scanner.o strutils.o
$(CC) $^ $(CCFLAGS) -lfl -o $@
strutils.o: strutils.c strutils.h
$(CC) $(CCFLAGS) -c $<
tar: clean
mkdir -p $(DISTNAME)
cp `find . -type f -maxdepth 1` $(DISTNAME)
cp -r $(INCLUDEPATH) $(DISTNAME)
cp -r $(EDITORPATH) $(DISTNAME)
cp -r $(EXAMPLEPATH) $(DISTNAME)
$(TAR) zcvf $(DISTNAME).tar.gz $(DISTNAME)
# clean-up function
clean:
rm -f *~ $(EDITORPATH)/*~ $(INCLUDEPATH)/*~ *.l *.o *.a core grammar.output grammar.tab.h grammar.tab.c scanner.c makescanner spl2c *.tar.gz
rm -rf spl $(DISTNAME)
$(MAKE) -C $(EXAMPLEPATH) clean
最佳答案
添加flex
给你的PATH
不会使 flex 库 可用于链接器,ld.exe
.您可能需要将 flex 库目录添加到 -L <directory>
command line option to your compiler .
关于c - ld.exe 找不到 -lfl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7941160/
我使用 flex 和 bison 构建了一个从 Github 克隆的简单计算器项目。 但是我在终端输入 make 后,我得到了以下信息: gcc -o calc calc.tab.c lex.yy.c
我正在使用 mingw 编译莎士比亚编程语言,在编译过程中出现以下错误。 c:/users/neil/mingw/bin/../lib/gcc/mingw32/4.5.2/../../../../mi
我写了gcc lex.yy.c -o ornek -lfl在命令行中。然后我收到如下错误: /usr/bin/ld: cannot find -lfl collect2: error: ld retu
嗨,我正在学习 Lex 和 yacc。我创建了以下 lex 程序。 %{ #include %} %% [0123456789]+ printf("NUMBER\n"); [a-
我正在尝试翻译我的 .spl文件转换为 C 文件(因为没有编译器)。我有一个示例“Hello World”.spl 文件,我已经下载了 Shakespeare Programming Language
我是一名优秀的程序员,十分优秀!