Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Thu, 17 Mar 2016 22:33:41 -0400
From: Michael McConville <mmcco@...olab.com>
To: musl@...ts.openwall.com
Subject: Add support for amd64 target

AMD64 and x86-64 are effectively interchangeable terms. BSDs use the
prior while Linux uses the latter. The below patch therefore fixes
configure on OpenBSD.

For what it's worth, the build then survives until linking. I haven't
had a chance to diagnose that problem yet.

Thanks for your time,
Michael


diff --git a/configure b/configure
index 213a825..e961800 100755
--- a/configure
+++ b/configure
@@ -306,7 +306,7 @@ i?86-nt32*) ARCH=nt32 ;;
 i?86*) ARCH=i386 ;;
 x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;;
 x86_64-nt64*) ARCH=nt64 ;;
-x86_64*) ARCH=x86_64 ;;
+x86_64*|amd64*) ARCH=x86_64 ;;
 mips64*) ARCH=mips64 ;;
 mips*) ARCH=mips ;;
 microblaze*) ARCH=microblaze ;;

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.