beremiz
Clone
Summary
Browse
Changes
Graph
Fixed bug in actionBlock actions editing
2013-10-02, Laurent Bessard
6adf05c4508d
file is
Executable
Fixed bug in actionBlock actions editing
from ..toolchain_gcc import toolchain_gcc
class Linux_target(toolchain_gcc):
dlopen_prefix = "./"
extension = ".so"
def getBuilderCFLAGS(self):
return toolchain_gcc.getBuilderCFLAGS(self) + ["-fPIC"]
def getBuilderLDFLAGS(self):
return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lrt"]