search for: sourcelanguag

Displaying 3 results from an estimated 3 matches for "sourcelanguag".

Did you mean: sourcelanguage
2008 Nov 13
0
[LLVMdev] 'struct' now seen using 'class'
...warning C4099: 'llvm::SDISelAsmOperandInfo' : type name first seen using 'class' now seen using 'struct' 7> c:\dj\llvm\lib\codegen\selectiondag\SelectionDAGBuild.h(64) : see declaration of 'llvm::SDISelAsmOperandInfo' 14>C:\llvm\include\llvm/Debugger/SourceLanguage.h(32) : warning C4099: 'llvm::SourceLanguage' : type name first seen using 'class' now seen using 'struct' 14> C:\llvm\include\llvm/Debugger/ProgramInfo.h(33) : see declaration of 'llvm::SourceLanguage' 16>c:\dj\llvm\lib\target\x86\asmprinter\X86ATT...
2008 Dec 16
1
Change in Lattice bwplot?
...|type * group, data=merge(vot,words,by="ord"), nint=30, horizontal=F, layout=c(3,3), box.ratio=0.8) which produced a lovelly 3x3 lattice plot with one box/gender in each panel. Now, I try > bwplot( SyllableNucleusDiff ~ SourceLanguage,data=Hstar,horizontal=F) to get just a simple 1x1 panel plot with groups (which I will then of course make into a panel plot by adding | factor1 +factor2...), but I get a "Syntax error". So, has anything changed, or am I just doing something very silly? /Fredrik -- "Life is like...
2008 Feb 01
0
[LLVMdev] Making dll's on MinGW.
...object files that you need on your project (LLVMX86.o, LLVMExecutionEngine.o and LLVMJIT.o for me). 4. cd to `temp'. 5. Execute this: for f in ../lib*.a ; do ar x $f ; done If you are working on the LLVM's debug install, do: rm Debugger.o ProgramInfo.o RuntimeInfo.o SourceFile.o SourceLanguage*.o 6. Then: g++ -shared --export-all-symbols -o LLVM.dll *.o -lpsapi -ldbghelp This may require several minutes and use approx. 0.5 GB. If you are working on LLVM's debug install, it is a good idea to name the dll LLVMd.dll or something to differentiate it from the release b...