Skip to content

Commit

Permalink
Merge pull request #1482 from Autodesk/sabrih/add_instruction_devtool…
Browse files Browse the repository at this point in the history
…set-6

Added instruction for installing devtoolset-6 on CentOS.
  • Loading branch information
Krystian Ligenza authored Jun 11, 2021
2 parents 47940f2 + 5133f65 commit 2f94f58
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions doc/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,26 @@ To allow your tests to run, you can inject LD_LIBRARY_PATH into any of the mayaU

There is a related ADDITIONAL_PXR_PLUGINPATH_NAME cmake var which can be used if schemas are installed in a non-standard location

##### Devtoolset-6:

Devtoolset-6, which includes GCC 6 on CentOS has been retired from the main repo and moved into the vault. Follow instructions below for installing devtoolset-6 on CentOS:

```
# download the packages, install may fail with "no public key found"
sudo yum-config-manager --add-repo=http://vault.centos.org/7.6.1810/sclo/x86_64/rh/
# to fix "no public key found"
cd /etc/pki/rpm-gpg
ls # confirm RPM-GPG-KEY-CentOS-SIG-SCLo exists
sudo rpm --import RPM-GPG-KEY-CentOS-SIG-SCLo
rpm -qa gpg* # confirm key with substring f2ee9d55 exists
# to install devtoolset-6
sudo yum install devtoolset-6
# disable the vault after successful install
sudo yum-config-manager --disable vault.centos.org_7.6.1810_sclo_x86_64_rh_
```

# How to Load Plug-ins in Maya

Expand Down

0 comments on commit 2f94f58

Please sign in to comment.