From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============6998278332119661471==" MIME-Version: 1.0 From: Mark Wielaard To: elfutils-devel@lists.fedorahosted.org Subject: Re: make the shared library optional Date: Tue, 11 Nov 2014 10:11:10 +0100 Message-ID: <1415697070.4965.5.camel@bordewijk.wildebeest.org> In-Reply-To: 5460EC8E.2010101@imgtec.com --===============6998278332119661471== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Mon, 2014-11-10 at 16:49 +0000, Vicente Olivert Riera wrote: > On 11/08/2014 03:14 PM, Mark Wielaard wrote: > >>> It looks like that is a fairly old 0.155 build with several patches > >>> applied. Have you tried latest elfutils 0.160 or current git? > >> > >> I have tried elfutils-0.160, but I'm having this error: > >> > >> /br/output/host/usr/bin/mipsel-linux-gcc -D_GNU_SOURCE -DHAVE_CONFIG_H > >> -DLOCALEDIR=3D'"/usr/share/locale"' -I. -I.. -I. -I. -I../lib -I.. > >> -I./../libelf -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -std=3Dgnu99 -= Wall > >> -Wshadow -Werror -Wunused -Wextra -fgnu89-inline -Wformat=3D2 -fpic > >> -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -pipe -Os -g2 -static -c -o > >> color.o color.c > >> color.c: In function =E2=80=98parse_opt=E2=80=99: > >> color.c:135:5: error: passing argument 4 of =E2=80=98argp_help=E2=80= =99 discards =E2=80=98const=E2=80=99 > >> qualifier from pointer target type [-Werror] > >> program_invocation_short_name); > >> ^ > >> In file included from color.c:34:0: > >> /home/ldap/vriera/work/mips-buildroots/mips32/output/host/usr/mipsel-b= uildroot-linux-uclibc/sysroot/usr/include/argp.h:469:13: > >> note: expected =E2=80=98char *=E2=80=99 but argument is of type =E2=80= =98const char *=E2=80=99 > >> extern void argp_help (__const struct argp *__restrict __argp, > >> ^ > >> cc1: all warnings being treated as errors > >> make[3]: *** [color.o] Error 1 > > = > > That is strange. argp_help does indeed take a non-const char *. > > But program_invocation_short_name is defined as non-const char * too > > in errno.h. You might be using a non-GNU glibc? Some libcs are slightly > > broken. > = > It's uClibc. Yeah, that seems to be the problem. glibc errno.h defines: extern char *program_invocation_name, *program_invocation_short_name; While uClibc has: extern const char *program_invocation_name, *program_invocation_short_name; If you fix uClibc errno.h to drop the const in these definitions the code will compile as is. Thanks, Mark --===============6998278332119661471==--