| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| X-Injected-Via-Gmane: | http://gmane.org/ |
| To: | cygwin AT cygwin DOT com |
| From: | "Alex Vinokur" <alexvn AT connect DOT to> |
| Subject: | gcc : undefined reference ___RUNTIME_PSEUDO_RELOC_LIST__ |
| Date: | Sun, 27 Apr 2003 11:54:39 +0300 |
| Lines: | 68 |
| Message-ID: | <b8g5qq$pa7$1@main.gmane.org> |
| X-Complaints-To: | usenet AT main DOT gmane DOT org |
| X-MSMail-Priority: | Normal |
| X-Newsreader: | Microsoft Outlook Express 5.50.4522.1200 |
| X-MimeOLE: | Produced By Microsoft MimeOLE V5.50.4522.1200 |
===========================================
Windows 2000
CYGWIN_NT-5.0 1.3.22(0.78/3/2)
GNU gcc version 3.2-3 20020927 (prerelease)
===========================================
I have a problem with compiling (linkage) the following program.
What is wrong?
========= C code : BEGIN =========
/* File rusage.c */
#include <stdio.h>
#include <sys/resource.h>
#include <assert.h>
int main()
{
#define TOTAL_TIMES 12500
int i;
struct rusage tval;
for (i = 0; i < TOTAL_TIMES; i++)
{
getrusage(RUSAGE_SELF, &tval);
printf ("[%d] getrusage = %ld.%ld\n",
i,
tval.ru_utime.tv_sec,
tval.ru_utime.tv_usec
);
fflush(stdout);
assert (tval.ru_utime.tv_sec >= 0);
assert (tval.ru_utime.tv_usec >= 0);
}
return 0;
}
========= C code : END ===========
========= Compilation : BEGIN =========
% gcc rusage.c
/usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../libcygwin.a(pseudo-reloc.o)(.text+0x49): undefined reference to
`___RUNTIME_PSEUDO_RELOC_LIST__'
/usr/lib/gcc-lib/i686-pc-cygwin/3.2/../../../libcygwin.a(pseudo-reloc.o)(.text+0x51): undefined reference to
`___RUNTIME_PSEUDO_RELOC_LIST_END__'
collect2: ld returned 1 exit status
========= Compilation : END ===========
--
==========================================
Alex Vinokur
mailto:alexvn AT connect DOT to
http://www.simtel.net/pub/oth/19088.html
http://sourceforge.net/users/alexvn
==========================================
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |