targets/Linux/__init__.py
author greg
Fri, 18 Sep 2009 14:58:22 +0200
changeset 391 9b1801ef99b5
parent 290 3bd617ae7a05
child 635 fcdb60cacb2c
permissions -rwxr-xr-x
fix runtime.py filename case to avoid problem on multi-platform
from .. import toolchain_gcc

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