public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Data Linkage Table
@ 2000-02-22  1:06 Rahul Parasnis
  2000-02-22  1:19 ` Jeffrey A Law
  2000-04-01  0:00 ` Rahul Parasnis
  0 siblings, 2 replies; 4+ messages in thread
From: Rahul Parasnis @ 2000-02-22  1:06 UTC (permalink / raw)
  To: gcc-help

Hello ,
I am compiling bind using gcc and I am getting Following Error
gcc -fpic  -O -I../../port/hpux10/include -I../../include   -c tmp_version.c
gcc -fpic -O   -o named db_dump.o db_load.o db_lookup.o db_save.o
db_update.o db_glue.o db_ixfr.o db_sec.o db_tsig.o ns_parser.o ns_lexer.o
ns_parseutil.o ns_ctl.o ns_forw.o ns_init.o ns_main.o ns_maint.o ns_req.o
ns_resp.o ns_stats.o ns_ncache.o ns_xfr.o ns_glue.o ns_udp.o ns_config.o
ns_update.o ns_ixfr.o ns_signal
.o ns_sort.o ns_notify.o \
        tmp_version.o ../../lib/libbind.a -ll
/usr/ccs/bin/ld: Data Linkage Table (+z) overflow in file db_dump.o - use
+Z option to recompile
collect2: ld returned 1 exit status

How to go about it ?
- Rahul 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Data Linkage Table
  2000-02-22  1:06 Data Linkage Table Rahul Parasnis
@ 2000-02-22  1:19 ` Jeffrey A Law
  2000-04-01  0:00   ` Jeffrey A Law
  2000-04-01  0:00 ` Rahul Parasnis
  1 sibling, 1 reply; 4+ messages in thread
From: Jeffrey A Law @ 2000-02-22  1:19 UTC (permalink / raw)
  To: Rahul Parasnis; +Cc: gcc-help

  In message < 00Feb22.175724jst.130826@tkfwbw1.clj.co.jp >you write:
  > Hello ,
  > I am compiling bind using gcc and I am getting Following Error
  > gcc -fpic  -O -I../../port/hpux10/include -I../../include   -c tmp_version.
  > c
  > gcc -fpic -O   -o named db_dump.o db_load.o db_lookup.o db_save.o
  > db_update.o db_glue.o db_ixfr.o db_sec.o db_tsig.o ns_parser.o ns_lexer.o
  > ns_parseutil.o ns_ctl.o ns_forw.o ns_init.o ns_main.o ns_maint.o ns_req.o
  > ns_resp.o ns_stats.o ns_ncache.o ns_xfr.o ns_glue.o ns_udp.o ns_config.o
  > ns_update.o ns_ixfr.o ns_signal
  > .o ns_sort.o ns_notify.o \
  >         tmp_version.o ../../lib/libbind.a -ll
  > /usr/ccs/bin/ld: Data Linkage Table (+z) overflow in file db_dump.o - use
  > +Z option to recompile
  > collect2: ld returned 1 exit status
  > 
  > How to go about it ?
First find out what +z and +Z do.  man cc

Then look at the GCC manual and find their equivalents (-fpic & -fPIC).

ie, read the fine manual(s).

jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Data Linkage Table
  2000-02-22  1:06 Data Linkage Table Rahul Parasnis
  2000-02-22  1:19 ` Jeffrey A Law
@ 2000-04-01  0:00 ` Rahul Parasnis
  1 sibling, 0 replies; 4+ messages in thread
From: Rahul Parasnis @ 2000-04-01  0:00 UTC (permalink / raw)
  To: gcc-help

Hello ,
I am compiling bind using gcc and I am getting Following Error
gcc -fpic  -O -I../../port/hpux10/include -I../../include   -c tmp_version.c
gcc -fpic -O   -o named db_dump.o db_load.o db_lookup.o db_save.o
db_update.o db_glue.o db_ixfr.o db_sec.o db_tsig.o ns_parser.o ns_lexer.o
ns_parseutil.o ns_ctl.o ns_forw.o ns_init.o ns_main.o ns_maint.o ns_req.o
ns_resp.o ns_stats.o ns_ncache.o ns_xfr.o ns_glue.o ns_udp.o ns_config.o
ns_update.o ns_ixfr.o ns_signal
.o ns_sort.o ns_notify.o \
        tmp_version.o ../../lib/libbind.a -ll
/usr/ccs/bin/ld: Data Linkage Table (+z) overflow in file db_dump.o - use
+Z option to recompile
collect2: ld returned 1 exit status

How to go about it ?
- Rahul 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Data Linkage Table
  2000-02-22  1:19 ` Jeffrey A Law
@ 2000-04-01  0:00   ` Jeffrey A Law
  0 siblings, 0 replies; 4+ messages in thread
From: Jeffrey A Law @ 2000-04-01  0:00 UTC (permalink / raw)
  To: Rahul Parasnis; +Cc: gcc-help

  In message < 00Feb22.175724jst.130826@tkfwbw1.clj.co.jp >you write:
  > Hello ,
  > I am compiling bind using gcc and I am getting Following Error
  > gcc -fpic  -O -I../../port/hpux10/include -I../../include   -c tmp_version.
  > c
  > gcc -fpic -O   -o named db_dump.o db_load.o db_lookup.o db_save.o
  > db_update.o db_glue.o db_ixfr.o db_sec.o db_tsig.o ns_parser.o ns_lexer.o
  > ns_parseutil.o ns_ctl.o ns_forw.o ns_init.o ns_main.o ns_maint.o ns_req.o
  > ns_resp.o ns_stats.o ns_ncache.o ns_xfr.o ns_glue.o ns_udp.o ns_config.o
  > ns_update.o ns_ixfr.o ns_signal
  > .o ns_sort.o ns_notify.o \
  >         tmp_version.o ../../lib/libbind.a -ll
  > /usr/ccs/bin/ld: Data Linkage Table (+z) overflow in file db_dump.o - use
  > +Z option to recompile
  > collect2: ld returned 1 exit status
  > 
  > How to go about it ?
First find out what +z and +Z do.  man cc

Then look at the GCC manual and find their equivalents (-fpic & -fPIC).

ie, read the fine manual(s).

jeff

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2000-04-01  0:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-02-22  1:06 Data Linkage Table Rahul Parasnis
2000-02-22  1:19 ` Jeffrey A Law
2000-04-01  0:00   ` Jeffrey A Law
2000-04-01  0:00 ` Rahul Parasnis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).