search for: confopt

Displaying 6 results from an estimated 6 matches for "confopt".

Did you mean: confopts
2006 Apr 23
3
[LLVMdev] Re: Building CFE on MinGW
...t;$BUILD_ROOT/install" LOCAL_BUILD_DIR="$BUILD_ROOT/build" SOURCE_DIR="$BUILD_ROOT/src" echo $__me: Building $TARGET echo $__me: BUILD_ROOT == $BUILD_ROOT echo $__me: SOURCE_DIR == $SOURCE_DIR echo $__me: LOCAL_BUILD_DIR == $LOCAL_BUILD_DIR echo $__me: PREFIX == $PREFIX confopts="--prefix=$PREFIX" confopts="$confopts --disable-threads" confopts="$confopts --disable-nls" confopts="$confopts --disable-shared" confopts="$confopts --enable-languages=c,c++" confopts="$confopts --disable-c-mbchar" confopts=...
2006 Apr 23
0
[LLVMdev] Re: Building CFE on MinGW
Greg Pettyjohn <gregp at ccs.neu.edu> writes: > I'm using a little shell script: [snip] > confopts="--prefix=$PREFIX" > confopts="$confopts --disable-threads" > confopts="$confopts --disable-nls" > confopts="$confopts --disable-shared" > confopts="$confopts --enable-languages=c,c++" > confopts="$confopts --disable-c...
2006 Apr 22
0
[LLVMdev] Re: Building CFE on MinGW
Greg Pettyjohn <gregp at ccs.neu.edu> writes: > Is the MinGW user's list on the web? Look on www.mingw.org -> mailing list > Can you give me a link to the thread? Sorry, no time for that. Once on the mailing list archives, do a search for 'configure'. > (What's IIRC?) If I Remember Correctly. By the way, what's your configure command? -- Oscar
2006 Apr 22
2
[LLVMdev] Re: Building CFE on MinGW
Is the MinGW user's list on the web? Can you give me a link to the thread? (What's IIRC?) Thanks. On Sat, 22 Apr 2006, Oscar Fuentes wrote: > Greg Pettyjohn <gregp at ccs.neu.edu> writes: > > > I've blown a couple of weekends trying to build under MinGW. > > > > I can build the llvm tools with only a couple of minor hassles, but can't > > seem
2006 Apr 23
1
[LLVMdev] Re: Building CFE on MinGW
Thanks. I'll try some of this. Further comments in-line: On Sun, 23 Apr 2006, Oscar Fuentes wrote: > Greg Pettyjohn <gregp at ccs.neu.edu> writes: > > > I'm using a little shell script: > [snip] > > confopts="--prefix=$PREFIX" > > confopts="$confopts --disable-threads" > > confopts="$confopts --disable-nls" > > confopts="$confopts --disable-shared" > > confopts="$confopts --enable-languages=c,c++" > > confopts=&q...
2013 May 24
1
how to build vTPM with xen 4.3?
...e from dom0 before you can add it to domU, using something like:virsh nodedev-detach pci_0000_06_01_0Given the EL6 CRC Xen packages you are using, they use pciback built as a module, so kernel boot parameters won''t help. What you need to do is add this to /etc/modprobe.d/:# cat xen-pciback.confoptions xen-pciback permissive=1 hide=(06:01.0)Run depmod -a once you have done that.Then:# modprobe xen-pcibackvirsh nodedev-detach pci_0000_06_01_0Also add the driver for the card to /etc/modprobe.d/blacklist.conf.After that you should be able to boot the domU with the device.You may also want to upg...