![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| High Level Programming Post questions about C, C++, Java, SQL, and other programming languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Undefined symbol: .log | ravindra_maddal | AIX | 0 | 05-15-2008 08:30 AM |
| undefined symbol: clock_gettime' error | dpa078 | High Level Programming | 4 | 04-09-2008 10:29 AM |
| Getting error "Undefined symbol: .u_strlen_2_6" | nachiketv | AIX | 0 | 06-05-2006 10:16 AM |
| shared object "undefined symbol: fstat" error | marcus121 | High Level Programming | 5 | 04-24-2006 08:11 PM |
| Undefined symbol: .getcury in getyx | gefa | High Level Programming | 7 | 03-24-2006 08:29 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hello,
when i compile with xlc on aix i got the error message "ld: 0711-317 ERROR: Undefined symbol: .hello" dummy.pc: #include <stdio.h> #include <stdlib.h> #include <string.h> #include "dummy.h" int main ( ) { printf("\nbefore Hello"); hello(); printf("\npast Hello"); return (0); } hello.c: void hello() { printf("Hello World!"); } dummy.h: void hello(void); can anyone help me, please? Daniel sorry for any grammatical mistakes but i 'm not really good in english. |
|
||||
|
Copy the code from the hello.c file at the bottom of dummy.pc , and the code from dummy.h at the location of
"#include 'dummy.h'". It should work after that. Please remember that the (.h) extension is normally used for libraries. If a file is just c-source, then call it (.c). Good luck, Rogier |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|