Search found 5 matches

by djxiaoaa
Fri Jan 13, 2023 4:52 pm
Forum: Developers corner
Topic: "install" a new 3rd party python module
Replies: 1
Views: 378

"install" a new 3rd party python module

Hello everyone, I have a question about the Python 3rd party module. On Windows, I think all the modules i can use in "Python console" of FreeCAD are installed in the build path "bin\lib\site-packages" after the build. Is there a way to add a new module inside this path so that I...
by djxiaoaa
Sun Aug 14, 2022 6:19 pm
Forum: Install / Compile
Topic: FreeCAD 0.20 bulid with Win11 VS2022
Replies: 7
Views: 1814

Re: FreeCAD 0.20 bulid with Win11 VS2022

Yes, this is a problem related to occ 7.6+, it will be gone if you use those libpacks with occ7.5.3 Thanks. That means I can build the 0.20 with the old LibPack 1.x version? To be honest, I'm a bit curious as to how their FreeCAD programmers work when it comes to 0.20 with 2.x version LibPack. Comp...
by djxiaoaa
Wed Jun 29, 2022 1:11 pm
Forum: Install / Compile
Topic: FreeCAD 0.20 bulid with Win11 VS2022
Replies: 7
Views: 1814

Re: FreeCAD 0.20 bulid with Win11 VS2022

Thank you for the information.

I just followed the step on the wiki page to build the FreeCAD 0.20 with the new version LibPack (https://github.com/FreeCAD/FreeCAD-LibP ... es/tag/2.6).

What do you mean OCC debug build, is there an option in cmake configuration ?
by djxiaoaa
Tue Jun 28, 2022 1:36 pm
Forum: Install / Compile
Topic: FreeCAD 0.20 bulid with Win11 VS2022
Replies: 7
Views: 1814

Re: FreeCAD 0.20 bulid with Win11 VS2022

Hello,
Update for this topic. The CD is only reproduceable with Debug Build.

And everything is ok for the moment with Release Build.

Code: Select all

void __CRTDECL operator delete(void* const block) noexcept
{
    #ifdef _DEBUG
    _free_dbg(block, _UNKNOWN_BLOCK);
    #else
    free(block);
    #endif
}
by djxiaoaa
Wed Jun 22, 2022 7:51 pm
Forum: Install / Compile
Topic: FreeCAD 0.20 bulid with Win11 VS2022
Replies: 7
Views: 1814

FreeCAD 0.20 bulid with Win11 VS2022

Hello everyone, I'm new here. I have clone the last official 0.20 version from git and build it with the new LibPack on window 11. Everything is ok. But when I run FreeCAD and try to open an existing file, the application has got a CD at "src\vcruntime\delete_scalar.cpp". Here is the stack...