Chris
Chris
should probably fix the python module setup with the site packages dir as well 🤦♂️
``` brew audit --formula freecad/freecad/med-file --new ==> Installing 'bundler' gem Fetching bundler-2.5.11.gem ``` ``` brew style freecad/freecad Inspecting 32 files ................................ 32 files inspected, no offenses detected ```
hopefully pr #553 will resolve this issue.
#554 should fix the python module path creation.
the PR from the following commit hash should resolve this issue. c8a4c07
currently running into the below issue because upstream pyside@6 has the force limited api set within the formula. https://forum.freecad.org/viewtopic.php?t=77963&start=40
a workaround for the above issue is to install a versioned formula of pyside that sets the below cmake var, ``` -DFORCE_LIMITED_API=no ```
it appears a patch may be required to fix the below error, ``` [ 57%] Building CXX object src/Mod/Surface/App/CMakeFiles/Surface.dir/Blending/FeatureBlendCurve.cpp.o [ 57%] Built target Import [ 57%] Building CXX object src/Mod/Robot/App/CMakeFiles/Robot.dir/TrajectoryObject.cpp.o...
the current error i'm getting when using my versioned version of pyside@6 and applying several patches to the freecad source, and using the below cmake command to configure my build...
it seems the above error message is related to the macos toolchain (possibly) and workaround / fix is to add the missing include for `` to the `LineGenerator.h` file. see...