search for: llvm_31

Displaying 2 results from an estimated 2 matches for "llvm_31".

Did you mean: llvm31
2012 May 11
2
[LLVMdev] LLVM library versionitis
...than we have linked with. Unfortunately, LLVM does not seem to have accounted for this problem. I started going down the straightforward route of changing the "llvm" namespace in my local LLVM build, with essentially this substitution: 'namespace llvm {' -> 'namespace llvm_31 {} namespace llvm=llvm_31; namespace llvm_31 {' Worked great for the C++ portion, but of course I quickly found parts of the LLVM core that are straight "C" linkage (no namespaces). An ideal solution would be to have a build-time 'configure' option for everything to be wrapp...
2012 May 11
0
[LLVMdev] LLVM library versionitis
...d with. > > Unfortunately, LLVM does not seem to have accounted for this problem. I started going down the straightforward route of changing the "llvm" namespace in my local LLVM build, with essentially this substitution: > > 'namespace llvm {' -> 'namespace llvm_31 {} namespace llvm=llvm_31; namespace llvm_31 {' > > Worked great for the C++ portion, but of course I quickly found parts of the LLVM core that are straight "C" linkage (no namespaces). > > An ideal solution would be to have a build-time 'configure' option for ev...