Open fire opened 1 year ago
% python3 make_releases.py
-- pybind11 v2.9.2
-- Could NOT find OpenMP_C (missing: OpenMP_C_FLAGS OpenMP_C_LIB_NAMES)
-- Could NOT find OpenMP_CXX (missing: OpenMP_CXX_FLAGS OpenMP_CXX_LIB_NAMES)
-- Could NOT find OpenMP (missing: OpenMP_C_FOUND OpenMP_CXX_FOUND)
-- Configuring done (0.5s)
-- Generating done (0.0s)
-- Build files have been written to: /Users/ernest.lee/Documents/DagAmendment/Accel/build-darwin
[100%] Built target Accel
-- Install configuration: "Release"
-- Up-to-date: /Users/ernest.lee/Documents/DagAmendment/Accel/../DagAmendment/Accel.cpython-311-darwin.so
Zipping DagAmendment into releases/DagAmendment-v1.1.0...
Done! You may install in Blender the addon releases/DagAmendment-v1.1.0.zip.
Hello!
About constexpr std::tuple<int,int,int> version = {1, 0, 0}
, apparently ISO C++ does not require std::tuple
constructor to be constexpr, so just replace constexpr
by const
it's ok.
For auto proj_triangles = py::array_t<int>(...)
I guess just remove the braces from this line (sorry, compiler specific thing again, and I don't have a mac to test).
Could you do a Pull Request to share your changes?
Hope to post some logs, so that others can help.
I had to change the bash script to use python 3.11
Some minor? coding errors.