targets/Linux/__init__.py
author Edouard TISSERANT <edouard.tisserant@gmail.com>
Sun, 06 Dec 2009 21:03:10 +0100
changeset 462 274e83a5534e
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
Now debug is not a button anymore
from .. import toolchain_gcc

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