From: Ulrich Drepper Date: Thu, 7 May 1998 12:03:34 +0000 (+0000) Subject: PIC support. X-Git-Tag: cvs/sparc-980522-merge~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aedb28000f2c31d8fcf96cdc2f37b5c5edd36d39;p=thirdparty%2Fglibc.git PIC support. --- diff --git a/sysdeps/alpha/dl-machine.h b/sysdeps/alpha/dl-machine.h index a91c24727c6..db2ee058056 100644 --- a/sysdeps/alpha/dl-machine.h +++ b/sysdeps/alpha/dl-machine.h @@ -392,10 +392,12 @@ elf_machine_rela (struct link_map *map, /* There is no point calling _dl_sysdep_error, it almost certainly hasn't been relocated properly. */ asm ("halt"); -#else +#elif defined PIC extern char **_dl_argv; _dl_sysdep_error (_dl_argv[0] ?: "", ": Unknown relocation type\n", NULL); +#else + assert (! "unexpected dynamic reloc type"); #endif } }