search for: l491

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

Did you mean: 491
2007 Sep 04
1
Tripplite Smart 2200 and Battery Voltage
For my Smart 2200, a charged battery string is anywhere between 25.6 and 26.8 volts. I'm seeing nut report 13.0 volts, which seems suspicious. Even if the UPS were reporting half of the actual battery voltage to keep protocol compatibility with models having a 12V battery system, the value of exactly 13.0 seems unlikely. According to the page at
2018 Jan 04
0
AllocateTarget for ELF objects on Darwin
...add another line:   TT.setOS(llvm::Triple::UnknownOS); This line removes the OS info from my triple, so that the AllocateTarget() function no longer returns a DarwinX86_64TargetInfo from here: https://github.com/llvm-mirror/clang/blob/71928e1dab585f336f6d0fb337969eda00ccd19c/lib/Basic/Targets.cpp#L491 The problem with DarwinX86_64TargetInfo is, that it's hard-coded for Mach-O. It always sets the same data-layout string in the target description: https://github.com/llvm-mirror/clang/blob/master/lib/Basic/Targets/X86.h#L757 *** This causes the above error. Can anyone explain this behavior? I...