targets/Linux/__init__.py
author Edouard Tisserant
Thu, 06 Oct 2011 22:39:05 +0200
changeset 622 885a224a35be
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
runtime's process cwd should now be the same as provided working dir, fixin permission problem on W7
from .. import toolchain_gcc

class Linux_target(toolchain_gcc):
    extension = ".so"
    def getBuilderLDFLAGS(self):
        return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lrt"]