windows build failed #362
-
Got only one build error with VS 2022 but this blocks me a while. Could someone help? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
similiar issues as #67 But the issue is not solved |
Beta Was this translation helpful? Give feedback.
-
This problem is due to python within msys has conflict with py7zr. You can test this problem by running python and import py7zr and it will occur segment fault crash.
then you can run p.s. another way may solve this problem is to modify OpenRV\cmake\dependencies\python3.cmake: 134 (line number for me) SET(_pyside2_make_command |
Beta Was this translation helpful? Give feedback.
This problem is due to python within msys has conflict with py7zr. You can test this problem by running python and import py7zr and it will occur segment fault crash.
I solve this problem by use official version of python instead of python within py7zr.
After you finished official version of python, change PATH in msys to let it find new version first:
then you can run
rvmk
command to test if your problem is solved. : )p.s. another way may solve this problem is to modify OpenR…