Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"ppc64" is not detected as powerpc64 #5

Closed
agoode opened this issue Apr 19, 2013 · 2 comments · Fixed by #7
Closed

"ppc64" is not detected as powerpc64 #5

agoode opened this issue Apr 19, 2013 · 2 comments · Fixed by #7

Comments

@agoode
Copy link
Contributor

agoode commented Apr 19, 2013

patch:

--- mlton-20100608~/bin/platform        2010-06-11 13:35:30.000000000 +0000
+++ mlton-20100608/bin/platform 2013-04-18 02:37:26.666395665 +0000
@@ -112,6 +112,9 @@
 powerpc64)
        HOST_ARCH=powerpc64
 ;;
+ppc64)
+        HOST_ARCH=powerpc64
+;;
 powerpc)
         HOST_ARCH=powerpc
 ;;
@MatthewFluet
Copy link
Member

Would it be sensible to also change the subsequent:

ppc*)
        HOST_ARCH=powerpc
;;

to

ppc)
        HOST_ARCH=powerpc
;;

Or would a 32-bit powerpc be ppc32?

@agoode
Copy link
Contributor Author

agoode commented Apr 27, 2013

I think ppc) is fine. I don't know of any other cases for 32-bit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants