View | Details | Raw Unified | Return to bug 216012
Collapse All | Expand All

(-)b/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c (+31 lines)
Lines 550-555 elftc_reloc_type_str(unsigned int mach, unsigned int type) Link Here
550
		case 48: return "R_RISCV_GPREL_S";
550
		case 48: return "R_RISCV_GPREL_S";
551
		}
551
		}
552
		break;
552
		break;
553
	case EM_S390:
554
		switch (type) {
555
		case 0: return "R_390_NONE";
556
		case 1: return "R_390_8";
557
		case 2: return "R_390_12";
558
		case 3: return "R_390_16";
559
		case 4: return "R_390_32";
560
		case 5: return "R_390_PC32";
561
		case 6: return "R_390_GOT12";
562
		case 7: return "R_390_GOT32";
563
		case 8: return "R_390_PLT32";
564
		case 9: return "R_390_COPY";
565
		case 10: return "R_390_GLOB_DAT";
566
		case 11: return "R_390_JMP_SLOT";
567
		case 12: return "R_390_RELATIVE";
568
		case 13: return "R_390_GOTOFF";
569
		case 14: return "R_390_GOTPC";
570
		case 15: return "R_390_GOT16";
571
		case 16: return "R_390_PC16";
572
		case 17: return "R_390_PC16DBL";
573
		case 18: return "R_390_PLT16DBL";
574
		case 19: return "R_390_PC32DBL";
575
		case 20: return "R_390_PLT32DBL";
576
		case 21: return "R_390_GOTPCDBL";
577
		case 22: return "R_390_64";
578
		case 23: return "R_390_PC64";
579
		case 24: return "R_390_GOT64";
580
		case 25: return "R_390_PLT64";
581
		case 26: return "R_390_GOTENT";
582
		}
583
		break;
553
	case EM_SPARC:
584
	case EM_SPARC:
554
	case EM_SPARCV9:
585
	case EM_SPARCV9:
555
		switch(type) {
586
		switch(type) {
(-)b/lib/libgcc_s/Makefile (+1 lines)
Lines 8-13 MK_SSP= no Link Here
8
WARNS?=	2
8
WARNS?=	2
9
9
10
LDFLAGS+=	-nodefaultlibs
10
LDFLAGS+=	-nodefaultlibs
11
LIBADD+=	c
11
VERSION_MAP=	${.CURDIR}/Version.map
12
VERSION_MAP=	${.CURDIR}/Version.map
12
13
13
.include "../libcompiler_rt/Makefile.inc"
14
.include "../libcompiler_rt/Makefile.inc"

Return to bug 216012