if cc == "":
raise RuntimeError("No C Compiler detected")
if 'CPPFLAGS' in os.environ:
- cppflags = os.environ['CPPFLAGS'] + " "
+ cppflags = " " + os.environ['CPPFLAGS']
else:
cppflags = ""
if 'CFLAGS' in os.environ:
- cflags = os.environ['CFLAGS'] + " "
+ cflags = " " + os.environ['CFLAGS']
else:
cflags = ""
if 'LDFLAGS' in os.environ:
- ldflags = os.environ['LDFLAGS'] + " "
+ ldflags = " " + os.environ['LDFLAGS']
else:
ldflags = ""
- command = cc + " -c " + cppflags + cflags + ldflags + " -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())