Package Details: nvhpc 24.3-1

Git Clone URL: https://aur.archlinux.org/nvhpc.git (read-only, click to copy)
Package Base: nvhpc
Description: NVIDIA HPC SDK
Upstream URL: https://gitlab.com/badwaik/archlinux/aur/nvhpc
Keywords: compiler cuda fortran pgi portland
Licenses: custom
Conflicts: pgi-compilers
Replaces: pgi-compilers
Submitter: a.kudelin
Maintainer: jayesh
Last Packager: jayesh
Votes: 14
Popularity: 0.003797
First Submitted: 2020-10-20 12:54 (UTC)
Last Updated: 2024-04-03 00:02 (UTC)

Dependencies (5)

Required by (0)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 Next › Last »

a.kudelin commented on 2020-01-15 15:54 (UTC)

@HaoZeke Thank you!

HaoZeke commented on 2020-01-15 09:31 (UTC) (edited on 2020-01-15 09:47 (UTC) by HaoZeke)

Sorry I've been a bit busy. Updated the package to the latest version. I've also added @a.kudelin as a co-maintainer.

a.kudelin commented on 2019-12-20 10:09 (UTC)

@HaoZeke, could you please update the package to the recent version? If you have some difficulties doing it, I can help to maintain.

gamezelda commented on 2019-11-17 01:30 (UTC)

@JoshH100 Same problem here, it seems that the 'file://' prefix on the sources array of the PKGBUILD causes this problem. Removing it fixes this.

PrinceMachiavell commented on 2019-11-05 17:10 (UTC)

Is the pgilinux tar.gz not extracting automatically for anyone else? I had to add:

| tar xzf "pgilinux-${_REL_VERSION}-${_release//./}-x86-64.tar.gz

before executing the install script. I'm not sure why the 'extracting sources' step doesn't extract the archive in this case.

Also, it seems 'ncurses5-compat-libs' is needed if you want to use the PGDBG debugger.

backerman commented on 2019-04-14 00:09 (UTC)

The LICENSE has been revised and needs an updated MD5 sum. (4b126b6494c776016accd8ffbd0be51d)

eolianoe commented on 2019-01-10 20:46 (UTC)

@jedbrown: checksums fixed. For the link, I didn't manage to get the real link for the download and the one you posted is not functional with makepkg.

jedbrown commented on 2019-01-09 23:51 (UTC)

Current checksum does not pass. Also, it looks like this could use the direct link rather than depending on the user to download on their own. https://www.pgroup.com/support/downloader.php?file=pgi-community-linux-x64

eolianoe commented on 2018-03-19 21:11 (UTC)

@callofdutyops: thanks for the modification, I just used if rather than parameter expansion for more readability

callofdutyops commented on 2018-03-18 08:09 (UTC) (edited on 2018-03-18 08:10 (UTC) by callofdutyops)

Thanks for your hard working!

I suggest that LD_LIBRARY_PATH in the pgi-compilers.sh using bash parameter expansion, so that there won't be a leading colon in LD_LIBRARY_PATH even if the LD_LIBRARY_PATH is empty. And so the others. In another word, change:

export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PGI_HOME}/lib
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:${PGI_HOME}/mpi/openmpi/lib
export MANPATH=${MANPATH}:${PGI_HOME}/man
export LM_LICENSE_FILE=${LM_LICENSE_FILE}:${PGI}/license.dat

to this:

export LD_LIBRARY_PATH=${PGI_HOME}/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
export LD_LIBRARY_PATH=${PGI_HOME}/mpi/openmpi/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
export MANPATH=${PGI_HOME}/man${MANPATH:+:${MANPATH}}
export LM_LICENSE_FILE=${PGI}/license.dat${LM_LICENSE_FILE:+:${LM_LICENSE_FILE}}