pxr usd 19.3 compatibility#14
Open
99alfie wants to merge 2 commits intorodeofx:masterfrom
99alfie:master
Open
Conversation
added 2 commits
April 5, 2019 14:35
tbb namespace - should be passed in if needed, as it was it causes missing symbols when using tbb from pixar usd install usd needs to be build before maya plugin as it is a dependency of it Arnold will be double added when compiling maya and procedural so adding a if statement there FindOpenImageIO.cmake - binaries are not build by the usd install and not required FindUSD.cmake - adding SHARED extension so it finds hdStream.so all other changes are to make it compatible with the current v19.03 usd master
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi Guillaume,
I made some compatibility changes so it compiles with the latest usd master (v19.03). Also fixed a crash the procedural causes when maya is loaded. I am also looking into getting it going on windows.
I am compiling/linking pretty much against the libs that are built by usd (tbb, glew etc.), like so:
cmake -DCMAKE_INSTALL_PREFIX=/OpenWalter99alfie/walter/install -DCMAKE_BUILD_TYPE=Release -DUSD_ROOT=/USDpixar_jemalloc/install -DBOOST_INCLUDEDIR=/USDpixar_jemalloc/install/include -DBOOST_LIBRARYDIR=/USDpixar_jemalloc/install/lib -DOIIO_BASE_DIR=/USDpixar_jemalloc/install -DOCIO_PATH=/USDpixar_jemalloc/install -DILMBASE_ROOT=/USDpixar_jemalloc/install -DALEMBIC_ROOT=/USDpixar_jemalloc/install -DTBB_ROOT_DIR=/USDpixar_jemalloc/install -DJSONCPP_ROOT_DIR=/jsoncpp/install -DARNOLD_BASE_DIR=/arnold/Arnold-5.2.2.1 -DMTOA_BASE_DIR=/mtoa-3.1.2.1/maya-2018 -DMAYA_LOCATION=/maya-2018.update3 -DOPENSUBDIV_ROOT_DIR=/USDpixar_jemalloc/install -DPNG_ROOT=/USDpixar_jemalloc/install -DPTEX_LOCATION=/USDpixar_jemalloc/install -DTIFF_INCLUDE_DIR=/USDpixar_jemalloc/install/include -DTIFF_LIBRARY=/USDpixar_jemalloc/install/lib64 -DGLEW_INCLUDE_DIR=/USDpixar_jemalloc/install/include -DGLEW_LIBRARY=/USDpixar_jemalloc/install/lib64 -DZLIB_ROOT=/zlib-1.2.11/install ../
using Maya2018.3, on Centos
Cheers
Alf