cc = self._detectCC()
if cc == "":
raise RuntimeError("No C Compiler detected")
+ if 'CPPFLAGS' in os.environ:
+ cppflags = os.environ['CPPFLAGS']
+ else:
+ cppflags = ""
if 'CFLAGS' in os.environ:
cflags = os.environ['CFLAGS']
else:
cflags = ""
+ if 'LDFLAGS' in os.environ:
+ ldflags = os.environ['LDFLAGS']
+ else:
+ ldflags = ""
- command = cc + " -c " + cflags + " -I. -llttng-ust" + " -o " + self.outputFilename + " " + cFilename
+ command = cc + " -c " + cppflags + cflags + ldflags + " -I. -llttng-ust" + " -o " + self.outputFilename + " " + cFilename
if verbose:
print("Compile command: " + command)
subprocess.call(command.split())