targets/Linux/__init__.py
author laurent
Mon, 21 Sep 2009 12:00:52 +0200
changeset 397 6a7ff66a811d
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
Adding support for forcing tick count to return to zero as the same time than all tasks firing are synchronized
from .. import toolchain_gcc

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