- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我要运行的代码有 makefile,它显示错误:
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o: In function `_start':(.text+0x20): undefined reference to `main'
collect2: error: ld returned 1 exit status
make: *** [Nfa] Error 1
main函数的文件是terp.c。
带有 main() 的代码部分是:
#ifdef MAIN
#define ALLOCATE
#include "global.h" /*externs for Verbose*/
#define SIZE 256
PRIVATE char BUf[BSIZE] //input buffer
PRIVATE char *Pbuf=BUf; //current position in input buffer
PRIVATE char *Expr; //regular expression from command Line
...
在这里跳过一些代码直到主要...
void main (int argc,char *argv[])
{
int sstate; //Starting NFA state
SET *start_dfastate;//Set of starting DFA states
SET *current; //current DFA state
SET *next;
int accept; //current Dfa state is an accept
int c; //current input character
int anchor;
if (argc==2)
fprintf(stderr,"Expression is %s\n",argv[1]);
else
{
fprintf(stderr,"Usage:terp pattern < input\n");
exit(1);
}
//Compile the NFA create the initial state,and initialize the current state to the start state
Expr=argv[1];
sstate=nfa(getline);
next=newset();
ADD(next,sstate);
if (!(start_dfastate=e_closure(next,&accept,&anchor)))
{
fprintf(stderr,"Internal error:State machine is empty\n");
exit(1);
}
current=newset();
assign(current,start_dfastate);
while (c=nextchar())
{
if (next=e_closure(move(current,c),&accept,&anchor))
{
if (accept)
printbuf();
else
{
delset(current);
current=next;
continue;
}
}
delset(next);
assign(current,start_dfastate);
}
}
#endif
我正在使用的生成文件:
FILES.o=set.o hash.o printnfa.o input.o nfa.o terp.o assort.o prnt.o printv.o bintoasc.o ferr.o onferr.o fputstr.o pchar.o driver.o searchenv.o hashadd.o esc.o
PROGRAM= Nfa
INC := -I./debug.h -I./global.h
all: ${PROGRAM}
${PROGRAM}: ${FILES.o}
${CC} -o $@ ${CFLAGS} $(INC) $^ ${LDFLAGS} ${LDLIBS}
最佳答案
因为你的第一行是:
#ifdef MAIN
我会说你需要在编译时定义它。
在 makefile
中使用 -DMAIN
作为 gcc
的预处理器选项(您可以将此行放在 INC
行下方):
CFLAGS=-DMAIN
这样,编译器实际调用的时候就会被包含进来:
${CC} -o $@ ${CFLAGS} $(INC) $^ ${LDFLAGS} ${LDLIBS}
▲
║
╚═══ This will include the `MAIN` definition for compiling
另一种选择是一起删除#ifdef MAIN
。不要忘记从文件末尾删除相应的 #endif
。
关于c - undefined reference 而不是 makefile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22611696/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!