targets/Linux/__init__.py
author laurent
Sun, 06 Dec 2009 21:20:21 +0100
changeset 463 961bddcfc913
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
Adding support for forcing PLC variable (still command to PLC to implement)
from .. import toolchain_gcc

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