My aim is to create cross-platform C++ python modules.
I'm usingCyther
(cross-platform The Cross-Platform Cython/Python Compiler).
Cyther uses GCC
to compile modules and gives the user the ability to add GCC command-line args.
So, I need run compiler on Windows, but compile for Linux. What args I must pass to GCC to compile a module for Linux (or other platform)?
Is this possible, if so how?