search for: commandlin

Displaying 20 results from an estimated 1926 matches for "commandlin".

Did you mean: commandline
2011 Jan 27
2
[LLVMdev] Question about compiling plugins for LLVM tools
When I load my plugin into opt or llc, I get a bunch of warnings: llc: CommandLine Error: Argument 'use-unknown-locations' defined more than once! llc: CommandLine Error: Argument 'disable-debug-info-print' defined more than once! llc: CommandLine Error: Argument 'print-dbgscope' defined more than once! llc: CommandLine Error: Argument 'disable-sched-...
2011 Feb 02
0
[LLVMdev] Question about compiling plugins for LLVM tools
On Thu, Jan 27, 2011 at 1:27 AM, Talin <viridia at gmail.com> wrote: > When I load my plugin into opt or llc, I get a bunch of warnings: > > llc: CommandLine Error: Argument 'use-unknown-locations' defined more than > once! > llc: CommandLine Error: Argument 'disable-debug-info-print' defined more > than once! > llc: CommandLine Error: Argument 'print-dbgscope' defined more than once! > llc: CommandLine Error: Arg...
2004 Jul 03
1
[LLVMdev] CommandLine.cpp:189: error: `strdup' undeclared
...I've succeded until the Interix version of gcc program executes: Before the patch: gmake[1]: Entering directory `/usr/local/src/llvm/lib/Support' gmake[1]: Leaving directory `/usr/local/src/llvm/lib/Support' gmake[1]: Entering directory `/usr/local/src/llvm/lib/Support' Compiling CommandLine.cpp CommandLine.cpp: In function `void ParseCStringVector(std::vector<char*, std::allocator<char*> >&, const char*)': CommandLine.cpp:189: error: `strdup' undeclared (first use this function) CommandLine.cpp:189: error: (Each undeclared identifier is reported only once...
2007 Jun 19
1
[LLVMdev] Question about adding a pass in LLVM
Hi, I've met a problem when I am trying llvm. I've added a small pass in it, and when I define or use an object of APInt class, it will get the following output while running: $ opt -load hello.so -hello test.bc -o test.hello.bc opt: CommandLine Error: Argument 'disable-opt' defined more than once! opt: CommandLine Error: Argument 'disable-inlining' defined more than once! opt: CommandLine Error: Argument 'strip-debug' defined more than once! opt: CommandLine Error: Argument 'verify-each' defined more than...
2015 Apr 20
4
<qemu:commandline> domain XML tag is not working?
...2.2 and QEMU 2.0. As nova doesn't support that parameter yet, I did belows 1. nova boot a VM with raw disk image. 2. nova stop the VM. 3. run "virsh edit <instance-id>" on the hyprvisor node, and adding below into instance xml just before </domain>. However, the <qemu:commandline> part is ignored and not saved after closing virsh edit, seems that libvirt rejected these changes. Is there any XML syntax error here? Or libvirt doesn't support <qemu:commandline> tag? <qemu:commandline> <qemu:arg value='-set'/> <qemu:arg value='d...
2004 Aug 24
2
[LLVMdev] Support/CommandLine.h exposed through Pass.h?
...t;EnableTiming" for the -time-passes option. This conflicts at runtime with llvmc's -time-passes option (which it passes through to sub-tools). So, my solution is to declare the EnableTiming global var in Pass.h, remove its "static" keyword in Pass.cpp and expose "Support/CommandLine.h" in Pass.h. This compiles and works fine in all tools, but its a bit gross to expose CommandLine.h via Pass.h. Anyone object? An alternative is to remove EnableTiming from VMCore completely (it really doesn't belong there) and have callers pass in a boolean if they want timing. Then...
2015 Apr 21
1
Re: <qemu:commandline> domain XML tag is not working?
Hi Eric, Thanks! You are right, I missed declaring namespace, now, the <qemu:commandline> is saved after virsh edit. However, both namespace and <qemu:commandline> tag are lost after I run "nova start" to launch the VM. Any idea that how could I make this qemu command take effect ? Regards, CY. On Mon, Apr 20, 2015 at 11:41 PM, Eric Blake <eblake@redhat.com&gt...
2023 May 15
1
<qemu:commandline> ignored ?
> Is there something else which is a prerequisite to 'qemu:commandline' > but if yes and I'm missing those, why would not then 'virsh' and/or > 'virtqemud' say something? No what you have looks ok, this is what I have as a test and is working ok. You can try and these to see if something is shown in the guest. <qemu:commandline&gt...
2004 Jul 02
1
[LLVMdev] CommandLine.cpp:189: error: `strdup' undeclared
...terix environment. I've succeded until the Interix version of gcc program executes: gmake[1]: Entering directory `/usr/local/src/llvm/lib/Support' gmake[1]: Leaving directory `/usr/local/src/llvm/lib/Support' gmake[1]: Entering directory `/usr/local/src/llvm/lib/Support' Compiling CommandLine.cpp CommandLine.cpp: In function `void ParseCStringVector(std::vector<char*, std::allocator<char*> >&, const char*)': CommandLine.cpp:189: error: `strdup' undeclared (first use this function) CommandLine.cpp:189: error: (Each undeclared identifier is reported only once...
2004 Aug 24
0
[LLVMdev] Support/CommandLine.h exposed through Pass.h?
...-time-passes option. This conflicts at runtime > with llvmc's -time-passes option (which it passes through to > sub-tools). Ok. > So, my solution is to declare the EnableTiming global var in Pass.h, > remove its "static" keyword in Pass.cpp and expose > "Support/CommandLine.h" in Pass.h. This compiles and works fine in all > tools, but its a bit gross to expose CommandLine.h via Pass.h. > > Anyone object? Yes, I do. :) Check out how -debug is handled. In particular, the CommandLine library supports the idea of "external storage", which wil...
2005 Jul 22
2
[LLVMdev] Need help on SPEC 95 "standard" commandlines
Some of the run commandlines don't seem to be the *default ref* configuration. For instance, in 099.go, what's in the script is: LEVEL = ../../../.. BM=099.go ifeq ($(RUN_TYPE),test) STDIN_FILENAME = /dev/null STDOUT_FILENAME = null.out RUN_OPTIONS = 40 19 else STDIN_FILENAME = 2stone9.in STDOUT_FILENAME = 2...
2005 Jul 22
2
[LLVMdev] Need help on SPEC 95 "standard" commandlines
Does anyone know the "standard" commandline to compile and run spec95 benchmarks ? I found some scripts in llvm test suite (External/SPEC/CINT95), but I am not sure if they are the *default ref* configurations. <Some of them seem to use smaller problem sizes.> SPEC95 was retired many years ago, so few people around me know how to...
2015 Apr 21
1
Re: <qemu:commandline> domain XML tag is not working?
...<instance-id>" on the hyprvisor node, and adding below > > into instance xml just before </domain>. > > You're modifying the guest definition behind Nova's back, so you get to > keep all the pieces if something breaks. :-) > > > However, the <qemu:commandline> part is ignored and not saved after > closing > > virsh edit, seems that libvirt rejected these changes. Is there any XML > > syntax error here? Or libvirt doesn't support <qemu:commandline> tag? > > > > <qemu:commandline> > > <qemu:arg v...
2008 Sep 17
3
unix-type commandline keystrokes in the windows RGUI
Hi all, I am generally quite fond of the unix commandline keystrokes (e.g. searching back in your history with [CTRL]-R, and cutting/pasting with [CTRL]-K/Y) which work in the R commandline in *nix. Does anyone know if there's any way to get similar functionality in the Windows RGUI? I know that as of now, [CTRL]-A and -E do the same as unix (begin...
2012 Apr 13
2
[LLVMdev] Make error of latest devel version of llvm and clang
...::opt<char [20], llvm::cl::desc, llvm::cl::value_desc, llvm::cl::initializer<char [1]> >(char const (&) [20], llvm::cl::desc const&, llvm::cl::value_desc const&, llvm::cl::initializer<char [1]> const&)': /home/ryjiao/Downloads/llvm-dev/llvm/include/llvm/Support/CommandLine.h:1200: undefined reference to `llvm::cl::opt<std::string, false, llvm::cl::parser<std::string> >::done()' /home/ryjiao/Downloads/llvm-dev/llvm/tools/opt/Debug+Asserts/opt.o: In function `void llvm::cl::initializer<char [1]>::apply<llvm::cl::opt<std::string, false, llvm...
2023 May 15
2
<qemu:commandline> ignored ?
Hi guys. I have a domain definition with this: ... ? <qemu:commandline> ??? <qemu:arg value='-fw_cfg'/> ??? <qemu:arg value='name=opt/com.coreos/config,file=/00-VMs/oshift1node.ign'/> ? </qemu:commandline> </domain> at the bottom of xml. 'virsh' creates domain a okey but in VM I do not see ignition happened - i...
2005 Jul 22
0
[LLVMdev] Need help on SPEC 95 "standard" commandlines
On Thu, 21 Jul 2005, Long Fei wrote: > Does anyone know the "standard" commandline to compile and run spec95 > benchmarks ? > > I found some scripts in llvm test suite (External/SPEC/CINT95), but I am not > sure if they are the *default ref* configurations. <Some of them seem to use > smaller problem sizes.> SPEC95 was retired many years ago, so few peopl...
2005 Jul 22
0
[LLVMdev] Need help on SPEC 95 "standard" commandlines
On Thu, 21 Jul 2005, Long Fei wrote: > which suggests the compiling command: > gcc -DSPEC_CPU95 -O2 -o spec_go g2.c g22.c g23.c g25.c g26.c g27a.c g27b.c > g28.c g29.c g2eye.c g2jlib2.c g2jos.c g2list.c g2reas.c g2s2.c g2s3.c g2shp.c > and the running commandline: > ./spec_go 50 9 2stone9.in > < are these correct ? > I believe that we only include test/train inputs for some programs. > This must be a shrinked problem size, since 2stone9.in is in the training > set, not the ref set. < There are two input files in ref subdirectory. Wh...
2016 Feb 27
3
Compiling for AArch64: CommandLine Error: Option 'aarch64-branch-relax' registered more than once!
Compiling for AArch64: CommandLine Error: Option 'aarch64-branch-relax' registered more than once! Hi all! I am trying to run LDC (LLVM-based D compiler) on AArch64. The compiler contains all IR and target specific passes. You can view it as combined llc/opt tool. It uses the same strategy as opt to collect the passes...
2008 Sep 06
2
[LLVMdev] "has different visibility" warnings
...rted getting these warnings - thousands of them - and I'm not sure what I did to cause them or how to solve them: ld: warning llvm::MemoryBuffer::getBufferStart() const has different visibility (1) in /usr/local/lib/libLLVMSupport.a(MemoryBuffer.o) and (2) in /usr/local/lib/libLLVMSupport.a(CommandLine.o) ld: warning llvm::OwningPtr<llvm::MemoryBuffer>::OwningPtr(llvm::MemoryBuffer*)has different visibility (1) in /usr/local/lib/libLLVMSupport.a(MemoryBuffer.o) and (2) in /usr/local/lib/libLLVMSupport.a(CommandLine.o) ld: warning llvm::OwningPtr<llvm::MemoryBuffer>::OwningPtr(ll...