Autodesk / maya-usd

A common USD (Universal Scene Description) plugin for Autodesk Maya
760 stars 202 forks source link

Failed to run 'cmake --build . --config RelWithDebInfo --target install -- -j16' #2202

Closed MChenLiang closed 2 years ago

MChenLiang commented 2 years ago

Describe the issue Compilation using Python failed。

Build log build_log.txt

Specs:

Additional context I have completed the construction of pixarusd. Under this folder: “D:\software\mayaplugin\workspace\pixarUSD ”。

Next: add PATH: D:\software\mayaplugin\workspace\pixarUSD\bin D:\software\mayaplugin\workspace\pixarUSD\lib

add PYTHONPATH: D:\software\mayaplugin\workspace\pixarUSD\lib\python

Next: using x64 Native Tools Command Prompt for VS 2017

python build.py --generator Ninja --build-args=-DCMAKE_MAKE_PROGRAM=ninja.exe --maya-location "D:\Program Files\Autodesk\maya2022" --pxrusd-location D:\software\mayaplugin\workspace\pixarUSD --devkit-location D:\software\mayaplugin\devkitBase\maya2022 D:\software\mayaplugin\workspace\mayaUSD --build-args="-BUILD_WITH_PYTHON_3=ON,-DBUILD_PXR_PLUGIN=OFF;-DBUILD_TESTS=OFF"

seando-adsk commented 2 years ago

There is a small mistake in your build.py line. You have two entries for --build-args with the 2nd one coming at the end (after the workspace location). Try moving that option and combining it with the first one you have where you set CMAKE_MAKE_PROGRAM (you shouldn't really need that since you are using the --generator flag.

Sean

seando-adsk commented 2 years ago

@MChenLiang Were you able to build MayaUsd successfully?