search for: dound

Displaying 13 results from an estimated 13 matches for "dound".

Did you mean: found
2007 Sep 12
2
[LLVMdev] Building uclibc ...
On 9/12/07, Chris Lattner <sabre at nondot.org> wrote: > > On Wed, 12 Sep 2007, Dound wrote: > > I am trying compile a libc with llvm (currently uclibc). I am able to > > compile uclibc by changing the Rules.mak to use llvm-gcc, llvm-ar, > llvm-ad, > > and not using strip. (I also use the --emit-llvm flag for > llvm-gcc). When > > I run llvm-nm on li...
2007 Sep 13
0
[LLVMdev] Building uclibc ...
On Sep 12, 2007, at 3:56 PM, Dound wrote: > > > On 9/12/07, Chris Lattner <sabre at nondot.org > wrote: > On Wed, 12 Sep 2007, Dound wrote: > > I am trying compile a libc with llvm (currently uclibc). I am > able to > > compile uclibc by changing the Rules.mak to use llvm-gcc, llvm- > ar, llv...
2007 Sep 12
0
[LLVMdev] Building uclibc ...
On Wed, 12 Sep 2007, Dound wrote: > I am trying compile a libc with llvm (currently uclibc). I am able to > compile uclibc by changing the Rules.mak to use llvm-gcc, llvm-ar, llvm-ad, > and not using strip. (I also use the --emit-llvm flag for llvm-gcc). When > I run llvm-nm on libc.a (or try to use libc.a) I...
2002 Dec 17
4
Quick tip please!
...le2") Now I would like to combine these into a single dataframe D, notionally D <- "d1 on the left, d2 on the right" which contains all the columns except that duplicates only occur once (and, preferably, in the order of occurrence on d1 -- i.e. remove them from d2 if already dound in d1). Any tips for how to do this slickly? With thanks, Ted. -------------------------------------------------------------------- E-Mail: (Ted Harding) <Ted.Harding at nessie.mcc.ac.uk> Fax-to-email: +44 (0)870 167 1972 Date: 17-Dec-02 Time: 15:47:2...
2007 Sep 12
2
[LLVMdev] Building uclibc ...
I am trying compile a libc with llvm (currently uclibc). I am able to compile uclibc by changing the Rules.mak to use llvm-gcc, llvm-ar, llvm-ad, and not using strip. (I also use the --emit-llvm flag for llvm-gcc). When I run llvm-nm on libc.a (or try to use libc.a) I run into problems. For example, strlen is not defined -- llvm-nm shows that strlen.os has __GI_strlen while if I compile with
2013 Aug 22
2
Re: Information needed regarding the libvirt version libvirt-1.0.6-1
Hi Daniel, Thanks a lot for your reply. We have mounted all the cgoup controllers at "/dev/cgroup_<controller>" as mentioned below. ls /dev/ | grep cgroup cgroup_cpu cgroup_cpuacct cgroup_cpuset cgroup_mem On further debugging we dound that the "VCPU" directories are not being created for our domains and hence the comamnd "cpu-stats <domain>" is failing. Below is the snippet of logs collected with debug logs enabled for libvirt. 2013-08-21 15:03:35.162+0000: 1273: error : virCgroupMakeGroup:708 : Make g...
2005 Apr 08
2
Cups print jobnames became SMB jobname not doc name
Since upgrading to Fedora Core 3 the jobname for the files being printed to our PDF CUPS backend have become the Samba jobname as in "SMBPRN.888009.hjdcl" instead of the application filename such as "Microsoft Word - Document1.DOC". This stops us from providing a properly-named PDF file to our users. Our other server that is still on Core 1 does not have this problem.
2001 Dec 03
1
Need error message explanation, please
...the console or the bootup log under Debian Linux: smb_get_lenght: recv error=5 smb_trans2_request: result=-5, invalid setting Samba version is: 2.2.2debian-2 (And other then the occasional message I see no problem with it.) I've tried to look for some info on error messages but I didn't dound any answer. Please copy me on my address as well, as I don't subscribe to the list. Many thanks for your help in advance! best regards, Balazs
2013 Aug 22
0
Re: Information needed regarding the libvirt version libvirt-1.0.6-1
...gt; > Thanks a lot for your reply. > > We have mounted all the cgoup controllers at "/dev/cgroup_<controller>" as > mentioned below. > ls /dev/ | grep cgroup > cgroup_cpu cgroup_cpuacct cgroup_cpuset cgroup_mem > > On further debugging we dound that the "VCPU" directories are not being > created for our domains and hence the comamnd "cpu-stats <domain>" is > failing. > Below is the snippet of logs collected with debug logs enabled for libvirt. > > 2013-08-21 15:03:35.162+0000: 1273: error : virCgr...
2007 Sep 22
1
[LLVMdev] fptoui Semantics Question
I am a little confused by the results of the result of fptoui ... seems to conflict with the instructions semantics as defined in the language reference (http://llvm.org/docs/LangRef.html#i_fptoui): %tmp1001 = fptoui float 1.0E+300 to i1 ; % yields tmp1001 = 0 on my machine! but the ref says: %Y = fptoui float 1.0E+300 to i1 ; yields i1:true (checked the return value with ... icmp
2013 Aug 22
2
Re: Information needed regarding the libvirt version libvirt-1.0.6-1
...> > > > We have mounted all the cgoup controllers at "/dev/cgroup_<controller>" > as > > mentioned below. > > ls /dev/ | grep cgroup > > cgroup_cpu cgroup_cpuacct cgroup_cpuset cgroup_mem > > > > On further debugging we dound that the "VCPU" directories are not being > > created for our domains and hence the comamnd "cpu-stats <domain>" is > > failing. > > Below is the snippet of logs collected with debug logs enabled for > libvirt. > > > > 2013-08-21 15:03:35.1...
2013 Aug 21
2
Information needed regarding the libvirt version libvirt-1.0.6-1
Hi, We have upgraded the libvirt version from libvirt-1.0.5 to libvirt-1.0.6-1 on our linux machine. After this upgrade "virsh cpu-stats <domain>" command is not working on our HardWare. *virsh # cpu-stats test error: Failed to retrieve CPU statistics for domain 'test' error: internal error error accessing cgroup cpuacct for vcpu* ** *# cat /proc/cgroups #subsys_name
2007 Sep 25
0
[LLVMdev] lli vs JIT diffs on FCmp::ne with NaN operands
I am having a little trouble with the fcmp one instruction on doubles only. For ordered comparisons, the LLVM manual states that true should be returned iff neither operands is QNAN. ( http://llvm.org/docs/LangRef.html#i_fcmp) If I do fcmp one which includes one or both operands as a NaN, the result is expected to be 0 then. If I run the bitcode with lli (JIT off), no problem. If I use the