gpt4 book ai didi

c - GCC 中 C 程序出现链接错误

转载 作者:行者123 更新时间:2023-11-30 18:30:41 25 4
gpt4 key购买 nike

我一直试图找出为什么当 gcc 尝试将对象文件链接在一起时出现此特定错误:

Undefined                       first referenced
symbol in file
main /usr/local/gcc_4.7.1/lib/gcc/sparc-sun-solaris2.10/4.7.1/crt1.o
ld: fatal: symbol referencing errors. No output written to complex
collect2: error: ld returned 1 exit status

调用您正在查看的代码来使用。目的是能够理解 makefile 并将所有这些文件在 gcc 上链接在一起。我相信问题出在 makefile 或 main.c 中。请帮助我几个小时以来一直在尝试纠正这个问题。我一直使用的命令是:

make makefile
gcc complex.c -o complex -lm

我已经彻底搜索了网络以找出导致此问题的原因,但它们对我来说没有任何意义。下面我将把我试图链接在一起的三个文件:complex.c、main.c、complex.h 和我的 makefile。

复杂.c:

 // Figure 11.10  Partial Implementation of Type and Operators for Complex Numbers
/*
* Operators to process complex numbers
*/

/* User-defined complex number type */
#include <stdio.h>
#include <math.h>
#include "complex.h"


/*
* Complex number input function returns standard scanning error code
* 1 => valid scan, 0 => error, negative EOF value => end of file
*/
int
scan_complex(complex_t *c) /* output - address of complex variable to
fill */
{
int status;

status = scanf("%lf%lf", &c->real, &c->imag);
if (status == 2)
status = 1;
else if (status != EOF)
status = 0;

return (status);
}

/*
* Complex output function displays value as (a + bi) or (a - bi),
* dropping a or b if they round to 0 unless both round to 0
*/
void
print_complex(complex_t c) /* input - complex number to display */
{
double a, b;
char sign;

a = c.real;
b = c.imag;

printf("(");

if (fabs(a) < .005 && fabs(b) < .005) {
printf("%.2f", 0.0);
} else if (fabs(b) < .005) {
printf("%.2f", a);
} else if (fabs(a) < .005) {
printf("%.2fi", b);
} else {
if (b < 0)
sign = '-';
else
sign = '+';
printf("%.2f %c %.2fi", a, sign, fabs(b));
}

printf(")");
}

/*
* Returns sum of complex values c1 and c2
*/
complex_t
add_complex(complex_t c1, complex_t c2) /* input - values to add */
{
complex_t csum;

csum.real = c1.real + c2.real;
csum.imag = c1.imag + c2.imag;

return (csum);
}

/*
* Returns difference c1 - c2
*/
complex_t
subtract_complex(complex_t c1, complex_t c2) /* input parameters */
{
complex_t cdiff;
cdiff.real = c1.real - c2.real;
cdiff.imag = c1.imag - c2.imag;

return (cdiff);
}

/* ** Stub **
* Returns product of complex values c1 and c2
*/
complex_t
multiply_complex(complex_t c1, complex_t c2) /* input parameters */
{
complex_t cmul;
double a, b, c, d;
a = c1.real;
b = c1.imag;
c = c2.real;
d = c2.imag;

if (( b > 0 && d < 0) || (b < 0 && d > 0))
{
cmul.real - (a*c) + (fabs(b)*fabs(d));
cmul.imag = (a*d) + (b*c);
}
else if (( b>0 && d>0) || (b<0 && d<0))
{
cmul.real = (a*c) - (b*d);
cmul.imag = (a*d) + (b*c);
}
return (cmul);
}

/* ** Stub **
* Returns quotient of complex values (c1 / c2)
*/
complex_t
divide_complex(complex_t c1, complex_t c2) /* input parameters */
{
complex_t cdiv;
double a, b, c, d;
a = c1.real;
b = c1.imag;
c = c2.real;
d = c2.imag;

if ( b > 0 && d < 0)
{
cdiv.real = (a*c) - (fabs(b)*fabs(d)) / ((c*c) + (d*d));
cdiv.imag = (a*d) + (b*c) / ((c*c) + (d*d));
}
else if ( b>0 && d>0)
{
cdiv.real = (a*c) - (fabs(b)*fabs(d)) / ((c*c) + (d*d));
cdiv.imag = ((-1*a*d) + (b*c)) / ((c*c) + (d*d));
}
else if (b<0 && d<0)
{
cdiv.real = (a*c) + (fabs(b)*fabs(d)) / ((c*c) + (d*d));
cdiv.imag = ((-1*a*d) + (b*c)) / ((c*c) + (d*d));
}
else if (b<0 && d<0)
{
cdiv.real = (a*c) + (fabs(b)*fabs(d)) / ((c*c) + (d*d));
cdiv.imag = ((a*fabs(d)) + (b*c)) / ((c*c) + (d*d));
}
return (cdiv);
}
/*
* Returns absolute value of complex number c
*/
complex_t
abs_complex(complex_t c) /* input parameter */
{
complex_t cabs;

cabs.real = sqrt(c.real * c.real + c.imag * c.imag);
cabs.imag = 0;

return (cabs);
}

main.c

#include <stdio.h>
#include "complex.h"

int main (void)
{
complex_t com1, com2;

/* Gets two complex numbers */
printf("Enter the real and imaginary parts of a complex number\n");
printf("separated by a space> ");
scan_complex(&com1);
printf("Enter a second complex number> ");
scan_complex(&com2);

/* Forms and displays the sum */
printf("\n");
print_complex(com1);
printf(" + ");
print_complex(com2);
printf(" = ");
print_complex(add_complex(com1, com2));

/* Forms and displays the difference */
printf("\n\n");
print_complex(com1);
printf(" - ");
print_complex(com2);
printf(" = ");
print_complex(subtract_complex(com1, com2));

/* Forms and displays the multiplication */
printf("\n");
print_complex(com1);
printf(" * ");
print_complex(com2);
printf(" = ");
print_complex(multiply_complex(com1, com2));

/* Forms and displays the division */
printf("\n");
print_complex(com1);
printf(" / ");
print_complex(com2);
printf(" = ");
print_complex(divide_complex(com1, com2));

/* Forms and displays the absolute value of the first number */
printf("\n\n|");
print_complex(com1);
printf("| = ");
print_complex(abs_complex(com1));
printf("\n");

return (0);
}

complex.h:

typedef struct {
double real, imag;
} complex_t;

int scan_complex(complex_t *c);
void print_complex(complex_t c);
complex_t add_complex(complex_t c1, complex_t c2);
complex_t subtract_complex(complex_t c1, complex_t c2);
complex_t multiply_complex(complex_t c1, complex_t c2);
complex_t divide_complex(complex_t c1, complex_t c2);
complex_t abs_complex(complex_t c);

生成文件:

complex: main.o complex.o
gcc -o complex main.o complex.o -lm
main.o: complex.h
gcc -c main.c
complex.o: complex.h
gcc -c complex.c

最佳答案

您不需要运行gcc命令,您只需要make。即

$ make
$ ./complex

使用 gcc 命令,您尝试将 complex.c 单独编译为二进制可执行文件,这当然行不通,因为它没有 main 函数。

如果您想直接使用 gcc 编译二进制文件,只需包含两个源文件:

$ gcc -o complex main.c complex.c -lm

关于c - GCC 中 C 程序出现链接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29358833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com