author | laurent |
Fri, 04 Jun 2010 17:04:25 +0200 | |
changeset 562 | 2c8f08f4f874 |
parent 290 | 3bd617ae7a05 |
child 635 | fcdb60cacb2c |
permissions | -rwxr-xr-x |
203 | 1 |
from .. import toolchain_gcc |
2 |
||
3 |
class Linux_target(toolchain_gcc): |
|
4 |
extension = ".so" |
|
290
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
229
diff
changeset
|
5 |
def getBuilderLDFLAGS(self): |
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
229
diff
changeset
|
6 |
return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lrt"] |