targets/Linux/__init__.py
author laurent
Tue, 24 May 2011 11:27:00 +0200
changeset 607 c68b662e0c2a
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
Bug when changing parameters in TargetType section in Beremiz project configuration fixed
from .. import toolchain_gcc

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