search for: 5658

Displaying 20 results from an estimated 182 matches for "5658".

Did you mean: 565
2002 Oct 05
0
R-1.6.0 for Darwin
...nd subselect, but a fix for those is on its way. === Jan de Leeuw; Professor and Chair, UCLA Department of Statistics; Editor: Journal of Multivariate Analysis, Journal of Statistical Software US mail: 9432 Boelter Hall, Box 951554, Los Angeles, CA 90095-1554 phone (310)-825-9550; fax (310)-206-5658; email: deleeuw@stat.ucla.edu homepage: http://gifi.stat.ucla.edu ------------------------------------------------------------------------ ------------------------- No matter where you go, there you are. --- Buckaroo Banzai http://gifi.stat.ucla.edu/sounds/nomat...
2010 Nov 19
3
[LLVMdev] lli can't read .bc files
Hi all I'm a new to LLVM. I was unable to browse all the archive since I couldn't locate any search option. So here is my issue: I installed LLVM under openSUSE 11.3 with the following llvm tools ---------- llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2.8) ---------- Low Level Virtual Machine (http://llvm.org/): llvm version 2.6 Optimized build. Built Jul 24 2010(08:41:55). Registered Targets: x86 - 32-bit X86: Pentium-Pro and above x86-64 - 64-bit X86: EM64T and AMD64 --------- The issue is that the LLI can'...
2012 Mar 06
2
[LLVMdev] Assembly Mips from bitecode llvm
llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2.9) Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. llc --version: Low Level Virtual Machine (http://llvm.org/): llvm version 2....
2012 Feb 05
2
[LLVMdev] misc questions on opt and bitcode
Hi, For the very simple example below, I get *Unknown instruction error from lli and llvm-dis*, while* llc does not print anything*. Not sure what is that I am missing here. My llvm-gcc version is i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00) 1-39-155-188:pastebin Babai$ cat example.c #include <stdio.h> void hello() { printf("testing\n"); } int main() { hello(); } 1-39-155-188:pastebin Babai$ llvm-gcc example.c -emit-llvm -c -o example.bc 1-39-155-188:pastebin Babai$ lli example.bc lli: exa...
2010 Nov 25
2
[LLVMdev] ARM Intruction Constraint DestReg!=SrcReg patch?
...* Attached to this document foo.c and the resulting foo.s. Please, take note of the illegal instruction mul r0, r0, r2 at line 18. * The patch is discussed at: http://www.mail-archive.com/llvm-commits at cs.uiuc.edu/msg14069.html * llvm-gcc --version llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build) Copyright (C) 2007 Free Software Foundation, Inc. kind regards, Maarten Faddegon -------------- next part -------------- A non-text attachment was scrubbed... Name: foo.c Type: text/x-csrc Size: 77 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachme...
2004 Feb 13
6
Building r-devel on Panther
I did: ./configure --with-blas='-framework vecLib' --with-lapack --with-aqua make sudo make install sudo make install-aqua Everything seems to be OK (some warnings about multiple definitions of some symbols). However: bass$ /Library/Frameworks/R.framework/Resources/bin/R Fatal error: unable to open the base package I got the same message when clicking on R.app in /Applications This
2016 Jan 12
0
Software Offloading Performance Issue on increasing VM's (TSO enabled ) pushing traffic
...1946 fa:16:3e:98:41:8b > fa:16:3e:ef:5f:16, IPv4, length 90: 10.20.7.3.50395 > 1.1.1.34.5001: tcp 24 14:36:26.331977 fa:16:3e:98:41:8b > fa:16:3e:ef:5f:16, IPv4, length 7056: 10.20.7.3.50395 > 1.1.1.34.5001: tcp 6990 14:36:26.332018 fa:16:3e:98:41:8b > fa:16:3e:ef:5f:16, IPv4, length 5658: 10.20.7.3.50395 > 1.1.1.34.5001: tcp 5592 14:36:26.332527 fa:16:3e:98:41:8b > fa:16:3e:ef:5f:16, IPv4, length 7056: 10.20.7.3.50395 > 1.1.1.34.5001: tcp 6990 14:36:26.332560 fa:16:3e:98:41:8b > fa:16:3e:ef:5f:16, IPv4, length 9852: 10.20.7.3.50395 > 1.1.1.34.5001: tcp 9786 14:36:26....
2012 Feb 06
0
[LLVMdev] misc questions on opt and bitcode
...2, at 11:32 AM, Arpan Sen wrote: > For the very simple example below, I get Unknown instruction error from lli and llvm-dis, while llc does not print anything. Not sure what is that I am missing here. My llvm-gcc version is i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00) > 1-39-155-188:pastebin Babai$ llvm-gcc example.c -emit-llvm -c -o example.bc > > Any ideas? On which instruction is illegal? Not offhand, but you can use llvm-gcc -S -emit-llvm example.c -o example.ll to get an llvm bitcode file as text and take a look. -eric...
2010 Nov 19
0
[LLVMdev] lli can't read .bc files
Hi Toussaint, > llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2.8) version 2.8 > Low Level Virtual Machine (http://llvm.org/): > llvm version 2.6 version 2.6 You need lli from version 2.8 or later. Ciao, Duncan.
2012 Mar 06
0
[LLVMdev] Assembly Mips from bitecode llvm
> llvm-gcc (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2.9) > Copyright (C) 2007 Free Software Foundation, Inc. Here I assume that your llvm-gcc is for x86-64-linux, since there was no MIPS release. So, you're feeding x86-oriented IR to MIPS backend. This won't work, you will need to provide MIPS-aware IR. Also, in 2.9 the MIPS...
2011 May 02
1
sip busy detect
...x=7527 at default nat=no qualify=yes cc_agent_policy=generic cc_monitor_policy=generic busylevel=1 limitonpeers=yes call-limit=1 when 7527 is busy i am getting following error message on CLI. Why i am getting channel status CONGESTION ? instead BUSY ? [May 2 16:47:31] NOTICE[31757]: chan_sip.c:5658 update_call_counter: Call to peer '7527' rejected due to usage limit of 1 -- Couldn't call 7527 -- Called 7527 == Everyone is busy/congested at this time (1:0/1/0) -- Executing [s at macro-stdexten:2] Goto("SIP/7604-00000006", "s-CONGESTION,1") in new stack...
2003 Aug 17
2
R-devel problem
...1 make[1]: *** [R] Error 1 make: *** [R] Error 1 === Jan de Leeuw; Professor and Chair, UCLA Department of Statistics; Editor: Journal of Multivariate Analysis, Journal of Statistical Software US mail: 9432 Boelter Hall, Box 951554, Los Angeles, CA 90095-1554 phone (310)-825-9550; fax (310)-206-5658; email: deleeuw@stat.ucla.edu homepage: http://gifi.stat.ucla.edu ------------------------------------------------------------------------ ------------------------- No matter where you go, there you are. --- Buckaroo Banzai http://gifi.stat.ucla.edu/sounds/nomat...
2003 Oct 03
2
tseries
Has anyone successfully check/build tseries for MacOSX? It seems like there is the same problem with symbols duplications. The -m like option does not seem to help. stefano
2003 Oct 15
2
help.search in trouble with R-patched ?
...unless its me missing something... > help.search("prompt", agrep=F) Error: couldn't find function ".class1" > traceback() 12: initialize(value, ...) 11: initialize(value, ...) 10: new("ObjectsWithPackage", value, package = pkg) 9: metaNameUndo(unique(these), prefix = "M", searchForm = searchForm) 8: methods:::getGenerics(ns) 7:
2010 Oct 05
0
[LLVMdev] way to determine which version of llvm for llvm-gcc? Xcode specifically
Hi Robb, When you run llvm-gcc with -v, you should see as part of the output something like: gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2366.3) That last bit on the end is an llvm tag version and should do the trick for what you're looking for. They generally refer to the tags at http://llvm.org/svn/llvm-project/llvm/tags/Apple. -Jim On Oct 4, 2010, at 4:50 PM, Robb Kistler wrote: > I'd like to know if t...
2010 Aug 31
1
[LLVMdev] gold-plugin compilation error
...hich is supposed to be there according to the docs on LLVM gold plugin. I configured LLVM with --with-binutils-include=/the/path/to/binutils/src/include. When I ran make ENABLE_OPTIMIZED=1, the errors above appeared. The LLVM Suite I have is not the latest version though. It is built from build 5658. Any advice or suggestion will be appreciated a lot. Bin
2011 Oct 14
0
[LLVMdev] undefined symbol: _ZN4llvm12PassRegistry12registerPassERKNS_8PassInfoEb
...llvm/llvm_core/llvm-2.9 --enable-languages=c,c++ --disable-jit : (reconfigured) ../llvm_gcc/llvm-gcc-4.2-2.9.source/configure -program-prefix=llvm --enable-llvm=/home/ryan/llvm/llvm_core/llvm-2.9 --enable-languages=c,c++ --disable-jit Thread model: posix gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build) Not sure if that helps or not. That's the llvmgcc version though. On Fri, Oct 14, 2011 at 8:41 AM, Ryan Taylor <ryta1203 at gmail.com> wrote: > > > ---------- Forwarded message ---------- > From: Duncan Sands <baldrick at free.fr> > Date: Fri, Oct 14...
2010 Oct 04
2
[LLVMdev] way to determine which version of llvm for llvm-gcc? Xcode specifically
I'd like to know if there is a way to find out which llvm version a given version of llvm-gcc is using for code generation. Specifically, I'm working with Xcode 3.2.5's arm-apple-darwin10-llvm-g++-4.2 Calling it with --version and --verbose don't give any hints. I want to run the compiler with --emit-llvm and eventually call llc. llc isn't included in Xcode so I want to
2003 Aug 17
2
(no subject)
...rameworks/Tk.framework/Versions/Current/Headers === Jan de Leeuw; Professor and Chair, UCLA Department of Statistics; Editor: Journal of Multivariate Analysis, Journal of Statistical Software US mail: 9432 Boelter Hall, Box 951554, Los Angeles, CA 90095-1554 phone (310)-825-9550; fax (310)-206-5658; email: deleeuw@stat.ucla.edu homepage: http://gifi.stat.ucla.edu ------------------------------------------------------------------------ ------------------------- No matter where you go, there you are. --- Buckaroo Banzai http://gifi.stat.ucla.edu/sounds/nomat...
2012 Jul 25
1
Rconfig.h & unsupported architectures
.../include/Rconfig.h:13:2: error: #error "Unsupported architecture." I'm on > sessionInfo() R version 2.15.1 (2012-06-22) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) And in case it helps: gcc --version i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.9.00) Any ideas about what I might have done to break this? Thanks! Hadley -- Assistant Professor / Dobelman Family Junior Chair Department of Statistics / Rice University http://had.co.nz/