Search found 769 matches

by Gift
Fri Jun 17, 2022 10:52 am
Forum: Install / Compile
Topic: Win 7 Msys2 : during building this error shows up 'fatal: not a git repository ...' !!
Replies: 6
Views: 653

Re: Win 7 Msys2 : during building this error shows up 'fatal: not a git repository ...' !!

Hello, during building by clang and clang++ compilers, this error message shows up [16/3398] Copying C:/msys64/home/Baba/FreeCAD/src/Mod/AddonManager/compact_view.py to C:/msys64/home/Baba/Build/Mod/AddonManager/compact_view.py [17/3398] Generating version_check fatal: not a git repository (or any ...
by Gift
Thu Jun 16, 2022 11:33 am
Forum: Developers corner
Topic: DXFNext
Replies: 26
Views: 6604

DXFNext

Introduction Currently it exits two solution to import a dxf file. The legacy python importer provide more comfort. But this will not be developed further because the performance. The C++ importer unfortunately supports significantly fewer functions and still seems vulnerable. What is confusing is ...
by Gift
Wed Jun 15, 2022 9:32 pm
Forum: Developers corner
Topic: [solved] Roadmap 0.21
Replies: 9
Views: 5848

Re: Roadmap 0.21

My motivation was not to discuss anything again. The new numbering was so abstract (for me) that I simply overlooked it.
by Gift
Wed Jun 15, 2022 5:40 pm
Forum: Developers corner
Topic: [solved] Roadmap 0.21
Replies: 9
Views: 5848

Re: Roadmap 0.21

chennes wrote: Wed Jun 15, 2022 5:23 pm We'll strip that label shortly, it was really just to distinguish from 0.20 PRs.
Ok. You can close this topic. I will use the correct one.
by Gift
Wed Jun 15, 2022 5:14 pm
Forum: Developers corner
Topic: [solved] Roadmap 0.21
Replies: 9
Views: 5848

Re: Roadmap 0.21

few lines above your thread, FYI https://forum.freecadweb.org/viewtopic.php?f=10&t=69438 :oops: Sorry. The next version will be named 1.0 because the Realthunder's TNP fix is planned to be added to it. Apart from that, paddle and abdullah are working on a large improvement of the Sketcher. Chec...
by Gift
Wed Jun 15, 2022 3:58 pm
Forum: Developers corner
Topic: [solved] Roadmap 0.21
Replies: 9
Views: 5848

[solved] Roadmap 0.21

1. What are your goals for 0.21?
2. Will there be coordination on this?
3. Is it possible to display this on GitHub (milestones)?

From my side:

- Reimplemation with substitution of both DXF-Importer/Writer
- Better E57-Support
by Gift
Wed Jun 15, 2022 3:27 pm
Forum: Install / Compile
Topic: Win 7 msys2 MinGW64: PythonStuff.cpp building error
Replies: 4
Views: 707

Re: Win 7 msys2 MinGW64: PythonStuff.cpp building error

The linker of msys2 is on windows very very slow (fork() topic [1].). What ever, with clang I get better result[2]. export CC=clang export CXX=clang++ Then: cmake -DBUILD_FEM=OFF ../freecad I think the following line use single build. cmake --build ./ Explicit single build: cmake --build . -j 1 Para...
by Gift
Tue Jun 14, 2022 6:35 pm
Forum: Install / Compile
Topic: SMESH building errors and warnings using msys2 with MinGW
Replies: 3
Views: 456

Re: SMESH building errors and warninngs

In the first step you can disable FEM:

Code: Select all

cmake -DCMAKE_PREFIX_PATH=/mingw64/lib/cmake/ -DBUILD_FEM=OFF ../FreeCAD