[Rpm-maint] [rpm-software-management/rpm] elfdeps: Add full multiarch deps support (#360)

Neal Gompa (ニール・ゴンパ) notifications at github.com
Mon Feb 19 14:56:42 UTC 2018


Conan-Kudo commented on this pull request.



> +	snprintf(archmarker, sizeof(archmarker), "(%s%s-%s)", elf_machine, elf_endian, elf_bitsize);
+	break;
+    case EM_X86_64:
+	/* This handling for x32 makes me weep inside... */
+	if (ehdr->e_ident[EI_CLASS] == ELFCLASS32) {
+	    snprintf(archmarker, sizeof(archmarker), "(%s-%s-%s)", elf_machine, "64", "x32");
+	} else {
+	    snprintf(archmarker, sizeof(archmarker), "(%s-%s)", elf_machine, elf_bitsize);
+	}
+	break;
+    default:
+	snprintf(archmarker, sizeof(archmarker), "(%s-%s)", elf_machine, elf_bitsize);
+	break;
+    }
+
+    return strndup(archmarker, strlen(archmarker));

@pmatilai Because I've never heard of `rasprintf()` before? Any reference to it somewhere?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/360#discussion_r169098454
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rpm.org/pipermail/rpm-maint/attachments/20180219/f87b45b4/attachment.html>


More information about the Rpm-maint mailing list