The following programs have to be available on the system for FlowTutor to be able to run:
An overview of FlowTutors functionality can be found in the projects Wiki
FlowTutor is available through the Python Package Index:
python -m pip install flowtutor
Warning As of June 2023 there exists a bug in MacOS/GDB, that prevents the debugging functionality of FlowTutor from functioning correctly.
Flowtutor uses GDB for its C debugging functionality. Modern Darwin kernels (used in macOS) restrict the capability to assume control over another process, which GDB needs to debug the program. To give the correct permissions to GDB it needs to be code signed.
Run the script macos-setup-codesign.sh
from the gdb-codesign
folder.
This sets up a certificate in the System Keychain and trusts the certificate for code signing.
Execute the following command with gdb-entitlement.xml
from the gdb-codesign
folder:
codesign --entitlements gdb-entitlement.xml -fs gdb-cert $(which gdb)
This refreshes the system's certificates and code-signing data.
The application is packaged with Pynsist for easier distribution on Windows.