forked from FreeCAD/FreeCAD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'FreeCAD:main' into CarbonCopy_Fix_SketchArchPython
- Loading branch information
Showing
592 changed files
with
37,162 additions
and
28,506 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import pydevd | ||
from multiprocessing.connection import Listener | ||
|
||
print("CLion debugger macro running. Starting listener to get port") | ||
listen = Listener(('localhost', 39998), backlog=1) | ||
link = listen.accept() | ||
port = link.recv() | ||
link.close() | ||
listen.close() | ||
print("Port", port, "received, starting debugger. Check CLion to see if a breakpoint has been hit and continue") | ||
pydevd.settrace(port=port) | ||
print("Debugger operating, leaving macro.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- attach_pydevd.py.orig 2024-09-26 10:36:47.131066345 -0400 | ||
+++ attach_pydevd.py 2024-09-26 10:16:48.687714133 -0400 | ||
@@ -48,6 +48,15 @@ | ||
import add_code_to_python_process | ||
show_debug_info_on_target_process = 0 | ||
|
||
+ print("attach_pydevd is trying to relay the port",setup['port']) | ||
+ try: | ||
+ from multiprocessing.connection import Client | ||
+ link = Client(('localhost',39998)) | ||
+ link.send(setup['port']) | ||
+ link.close() | ||
+ except ConnectionError as ce: | ||
+ pass | ||
+ | ||
pydevd_dirname = os.path.dirname(os.path.dirname(__file__)) | ||
|
||
if sys.platform == 'win32': |
Binary file not shown.
Submodule OndselSolver
updated
5 files
+5 −0 | OndselSolver/ASMTAssembly.cpp | |
+2 −0 | OndselSolver/CMakeLists.txt | |
+0 −1 | OndselSolverMain/OndselSolver.cpp | |
+1 −1 | testapp/camfollower.asmt | |
+1 −1 | testapp/gyro.asmt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.