Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page doesn’t try to be a complete porting guide, just a collection of the learnt approaches during porting Python packages and 3rd party libraries.

Table of Contents

Common issues

  • Do you have an executable that doesn’t start to run and you don’t see any error messages?

    • If you see this in console, try in GUI (Explorer) again, probably you’ll see some error pop-up window.

    • Do you see this as a CMake error that some simple C or C++ test is not able to run, so the build is aborted?

    • There is a good chance you hit this issue: Debug run-time DLL issue

Python related tips

  • Tests

    • Is there a test folder with test pythons scripts, but no hint how to run them?

      • Try install pytest and run this:

        Code Block
        pytest <test directory>

...