From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeffrey A Law To: Rahul Parasnis Cc: gcc-help@gcc.gnu.org Subject: Re: Data Linkage Table Date: Tue, 22 Feb 2000 01:19:00 -0000 Message-id: <978.951210814@upchuck> References: <00Feb22.175724jst.130826@tkfwbw1.clj.co.jp> X-SW-Source: 2000-02/msg00075.html 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeffrey A Law To: Rahul Parasnis Cc: gcc-help@gcc.gnu.org Subject: Re: Data Linkage Table Date: Sat, 01 Apr 2000 00:00:00 -0000 Message-ID: <978.951210814@upchuck> References: <00Feb22.175724jst.130826@tkfwbw1.clj.co.jp> X-SW-Source: 2000-q1/msg00269.html Message-ID: <20000401000000.EvM5pUl51ehCrvMys2dvb-u7hNWTzd8QOw2G0Gn6EYE@z> 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