author | Edouard Tisserant |
Thu, 16 May 2013 14:47:57 +0900 | |
changeset 1155 | 412e30abf7e5 |
parent 642 | cd7ccbbbf471 |
child 1279 | 0eb9f8af479f |
permissions | -rwxr-xr-x |
642 | 1 |
from ..toolchain_gcc import toolchain_gcc |
203 | 2 |
|
3 |
class Linux_target(toolchain_gcc): |
|
4 |
extension = ".so" |
|
635 | 5 |
def getBuilderCFLAGS(self): |
6 |
return toolchain_gcc.getBuilderCFLAGS(self) + ["-fPIC"] |
|
290
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
229
diff
changeset
|
7 |
def getBuilderLDFLAGS(self): |
3bd617ae7a05
Local Runtime (LOCAL://) now launched "on demand"
etisserant
parents:
229
diff
changeset
|
8 |
return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lrt"] |