This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gcc : undefined reference ___RUNTIME_PSEUDO_RELOC_LIST__


===========================================
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/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]