Toni Guttman提供了一个给定的r-tree代码(它已被修改为我的作业),但是,如果我更改参数(节点的维度),那么“make”将导致此类错误:
yacc y.spec
make: yacc:command not found
make: *** [y.tab.c] error 127
我已经安装了bison和flex,并且“yacc”显示了
alias yacc='bison'
/usr/bin/bison
我该怎么做才能解决问题?
这是“Makefile”:
# %W% %G%
# use flag -O for optimized code, slower compile
FLAGS=
SRC= main.c index.c newtid.c node.c rectangle.c \
printstats.c clock.c y.spec allocate.c error.c\
split.l.c \
split.q.c \
split.e.c
HEADERS= options.h macros.h index.h assert.h
ALL= $(SRC) $(HEADERS) split.l.h split.q.h split.e.h
OBJ= main.o index.o newtid.o node.o rectangle.o \
printstats.o clock.o y.tab.o allocate.o error.o
OBJLIN= split.l.o
OBJQ= split.q.o
OBJEXP= split.e.o
$(OBJ): $(HEADERS)
$(OBJLIN): $(HEADERS) split.l.h
$(OBJQ): $(HEADERS) split.q.h
$(OBJEXP): $(HEADERS) split.e.h
# assembler chokes if graphics.c is compiled with -g option, do it without.
# graphics.o: graphics.c $(HEADERS)
# cc -c graphics.c
# assembler chokes if y.tab.c is compiled with -g option, do it without.
# y.tab.o: y.tab.c $(HEADERS)
# cc -c y.tab.c
.c.o: $(HEADERS)
cc -c $(FLAGS) $*.c
linear: $(OBJ) $(OBJLIN)
cc $(FLAGS) $(OBJ) $(OBJLIN) -lm -o linear
quad: $(OBJ) $(OBJQ)
cc $(FLAGS) $(OBJ) $(OBJQ) -lm -o quad
exp: $(OBJ) $(OBJEXP)
cc $(FLAGS) $(OBJ) $(OBJEXP) -lm -o exp
y.tab.c: y.spec $(HEADERS)
yacc y.spec
edit:
sccs edit $(SRC) $(HEADERS) split.l.h split.q.h split.o.h
unedit:
sccs unedit $(ALL)
rm -f tags
delta:
sccs delta $(ALL)
rm -f tags
get:
sccs get $(ALL)
clean:
rm -f *.o core y.tab.c tags
tags: $(SRC)
ctags *.c
lint:
rm -f lint.out
lint *.c > lint.out
答案 0 :(得分:2)
您没有安装yacc
,正如您所见。更改shell中的别名无济于事,因为它试图运行yacc
命令,而不是shell。您必须编辑您的makefile,并添加如下行:
YACC = bison -y
(-y
标志使野牛表现得像yacc)
由于您没有显示您的实际makefile,我们无法确定是否会这样做,但很有可能。
编辑:
我上面的makefile,将yacc
的引用更改为bison -y
。
你的makefile没有遵循许多最佳实践,但那是另一天。
答案 1 :(得分:1)
手动添加此脚本/ usr / bin / yacc只是一个包含以下内容的脚本:
#! /bin/sh
exec '/usr/bin/bison' -y "$@"