You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Samuel Cozannet (JIRA)" <ji...@apache.org> on 2016/05/04 05:17:12 UTC

[jira] [Commented] (MESOS-5327) add support for ppc64le in install-nvidia-gdk.sh

    [ https://issues.apache.org/jira/browse/MESOS-5327?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15270066#comment-15270066 ] 

Samuel Cozannet commented on MESOS-5327:
----------------------------------------

The fix is pretty easy, adding a simple check at the beginning of the script: 

# The architecture of the underlying system
case "$(arch)" in 
  "x86_64" | "amd64" )
    ARCH="amd64"
    # The checksum of the gdk installer.
    NVIDIA_GDK_INSTALLER_SUM="3fa9d17cd57119d82d4088e5cfbfcad960f12e3384e3e1a7566aeb2441e54ce4"
  ;;
  "ppc64le" | "ppc64el" ) 
    ARCH="ppc64le"
    # The checksum of the gdk installer.
    NVIDIA_GDK_INSTALLER_SUM="064678e29d39f0c21f4b66c5e2fb18ba65fd9bc3372d0b319c31cab0e791fc1c"
  ;;
esac





> add support for ppc64le in install-nvidia-gdk.sh
> ------------------------------------------------
>
>                 Key: MESOS-5327
>                 URL: https://issues.apache.org/jira/browse/MESOS-5327
>             Project: Mesos
>          Issue Type: Bug
>          Components: build
>         Environment: Ubuntu 14.04 and 16.04 on ppc64le architecture
>            Reporter: Samuel Cozannet
>              Labels: build, easyfix
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> The current install-nvidia.sh script in support/ assumes it runs on amd64 architecture. Therefore it is impossible to build with GPU enabled on power (ppc64le) platform. 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)