diff --git a/constants.go b/constants.go index abf1c62..26067d8 100644 --- a/constants.go +++ b/constants.go @@ -6,7 +6,7 @@ import ( const ( //The name of our ELF section of "bitcode paths". - ELFSectionName = ".llvm_bc" + ELFSectionName = ".llvm_bc" //The name of our MACH-O segment of "bitcode paths". DarwinSegmentName = "__WLLVM" //The name of our MACH-O section of "bitcode paths". @@ -15,12 +15,16 @@ const ( //The user configured directory holding the LLVM binary tools. var LLVMToolChainBinDir string + //The user configured name of the clang compiler. var LLVMCCName string + //The user configured name of the clang++ compiler. var LLVMCXXName string + //The user configured name of the llvm-ar. var LLVMARName string + //The user configured name of the llvm-link. var LLVMLINKName string