similar to: [LLVMdev] clang errors on void main()

Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] clang errors on void main()"

2012 Feb 07
0
[LLVMdev] clang errors on void main()
On Mon, Feb 6, 2012 at 6:51 PM, Xin Tong <xerox.time.tech at gmail.com> wrote: > Is there any way to stop this ? > > /home/socrates/llvm/llvm-3.0.src/benchmarks/powerstone/crc/crc.c:67:1: > error: 'main' must return 'int' > void main() > ^ > 1 error generated. You mean besides fixing the source of your benchmark so it's valid C? Not at the moment...
2012 Feb 08
1
[LLVMdev] clang errors on void main()
07.02.2012 07:27, Eli Friedman пишет: > On Mon, Feb 6, 2012 at 6:51 PM, Xin Tong<xerox.time.tech at gmail.com> wrote: >> Is there any way to stop this ? >> >> /home/socrates/llvm/llvm-3.0.src/benchmarks/powerstone/crc/crc.c:67:1: >> error: 'main' must return 'int' >> void main() >> ^ >> 1 error generated. > You mean besides
2010 Sep 01
3
Dovecot creating aditional folders?
Hi guys. My conf: # 1.2.9: /etc/dovecot/dovecot.conf # OS: Linux 2.6.32-23-server x86_64 Ubuntu 10.04.1 LTS reiserfs log_timestamp: %Y-%m-%d %H:%M:%S protocols: imap imaps pop3 pop3s ssl_cert_file: /etc/ssl/mail/dovecot.crt ssl_key_file: /etc/ssl/mail/dovecot.key disable_plaintext_auth: no login_dir: /var/run/dovecot/login login_executable(default): /usr/lib/dovecot/imap-login
2003 Aug 06
1
adddriver rpc command generates segmentation fault
Hi, I'm trying to add a printer driver to samba 2.2.7, part of the RedHat 9 distro. I have all the associated files under print$/W32X86 (I verified that they were where I thought they were from samba's POV by looking via smbclient). Below is the output from a getdriver command issued to a W2K PDC to get the names of all the required files for the particular printer: [Windows NT x86]
2006 Sep 16
1
CentOS 3 fails yum update
Here's what I get: [root at socrates root]# yum update Gathering header information file(s) from server(s) Server: CentOS-3 - Addons Server: CentOS-3 - Base Server: CentOS-3 - Extras Server: CentOS-3 - Updates Finding updated packages Downloading needed headers Resolving dependencies .IOError - # 2 - No such file or directory I've tried yum clean and yum clean all, rpm --rebuilddb.
2002 Jun 27
2
GUI bug (PR#1711)
Full_Name: Socrates Alikhanidi Version: 1.5.1 OS: Windows 2000 Submission from: (NULL) (133.15.3.28) During resizing of 'R Console' windows the fatal error of forbidden memory access appears. To reproduce that with a guaranty, resize windows by mouse with small steps. Probably the faster computer is, the earlier that event appears. I have PIV 1.8 GHz. Waiting time was near 1 second.
1999 Mar 15
3
dos?
I have an old dos app that doesn't run in the win95 shell very well. There are problems with the graphics. Is it possible to connect to a samba server from real dos? I assume the answer is no but I thought I would check. Verne Ball vball@socrates.berkeley.edu
2003 Sep 19
2
About PLS analysis
Dear colleagues, May you point me out to the PLS module in R system? I could not find it at all using "PLS" or "partial" as the search keywords. Thank you. Sokratis. ---------------------------------- Sokratis ALIKHANIDI, Ph.D. Department of Knowledge-based Information Engineering Toyohashi University of Technology 1-1 Hibarigaoka, Tempaku-cho, Toyohashi 441, JAPAN TEL:
2011 Feb 09
3
[LLVMdev] Lowering "memcpy" intrinsic function on ARM using LDMIA/STMIA
09.02.2011 18:57, Jason Kim пишет: > On Wed, Feb 9, 2011 at 5:02 AM, Vasiliy Korchagin > <vasiliy.korchagin at gmail.com> wrote: >> Hi, >> >> llvm emits code for "memcpy" on ARM as consecutive ldr/str commands, and > > Hmm, this happens elsewhere as well (x86?). Perhaps what we need is a > switch to disable memset/memcpy lowering? > Do you
2011 Feb 09
0
[LLVMdev] Lowering "memcpy" intrinsic function on ARM using LDMIA/STMIA
-fno-builtin is the flag you want. deep On Wed, Feb 9, 2011 at 10:18 PM, Корчагин Василий <vasiliy.korchagin at gmail.com> wrote: > 09.02.2011 18:57, Jason Kim пишет: >> On Wed, Feb 9, 2011 at 5:02 AM, Vasiliy Korchagin >> <vasiliy.korchagin at gmail.com>  wrote: >>> Hi, >>> >>> llvm emits code for "memcpy" on ARM as consecutive
2011 Jul 01
2
[LLVMdev] How to prevent generation of wide integers in LLVM IR?
On 01.07.2011 12:03, Eli Friedman wrote: > On Fri, Jul 1, 2011 at 12:53 AM, Корчагин Василий > <vasiliy.korchagin at gmail.com> wrote: >> Hello, LLVMdev. >> >> The problem is that C backend doesn't support integers wider than 64 >> bits, but I need to use it on programs with wide integers in LLVM IR. My >> question is how to deny LLVM to generate wide
2002 Jul 30
5
Samba running as PDC and BDC
I am in the process of investigating whether it's viable to replace our NT server domain with a linux server domain using SAMBA. The key is if Samba can act as a PDC, with other Samba BDCs in remote locations. Is this possible? ---------------------------------------------- Gabriel Matthews gabriel@cinergycom.com Network Support Cinergy Communications When life hands you
2010 Nov 17
2
help on IDE
I am new comer in R.There r few IDE like Tinn R,VIM etc.I mean How to use them? Do I need to install R and then install them to use or they can work alone? Also does one install packages on R or IDEs? Can I call/use the package from IDEs? regards Parth -- Socrates, proclaimed: "I came to know one thing; that I know nothing".
2011 Feb 09
3
[LLVMdev] Lowering "memcpy" intrinsic function on ARM using LDMIA/STMIA
Hi, llvm emits code for "memcpy" on ARM as consecutive ldr/str commands, and further combines them into ldm/stm with special pass after register allocation. But ldm/stm commands require registers to go in ascending order, what is often not so after regalloc, therefore some str/ldr commands. For example such code: struct Foo {int a, b, c, d; } void CopyStruct(struct Foo *a, struct
2011 Jul 01
0
[LLVMdev] How to prevent generation of wide integers in LLVM IR?
On 1 July 2011 13:35, Vasiliy Korchagin <vasiliy.korchagin at gmail.com> wrote: > On 01.07.2011 12:03, Eli Friedman wrote: >> On Fri, Jul 1, 2011 at 12:53 AM, Корчагин Василий >> <vasiliy.korchagin at gmail.com>  wrote: >>> The problem is that C backend doesn't support integers wider than 64 >>> bits, but I need to use it on programs with wide
2004 Nov 22
3
IPv6 and Asterisk?
Hi, I've been experimenting with an IPv4 and IPv6 VoIP setup using SER. I'm using Asterisk for voicemail, etc. but as this only works for IPv4, I had to do a number of tricks to get it going for IPv6 phones. I was wondering whether there is any interest or plans in the pipeline to have Asterisk IPv6-enabled. Any info, especially by the developers out there, would be welcome. Thanks, --
2001 Feb 26
2
R ignoring quantile() in source()d file
Can anyone explain this behavior? Essentially, I've created a short file to be read in via source() that gets some descriptive information on a series of variables in a data frame. For each variable, I do three things: print('last.hc.actors') quantile(last.hc.actors,probs=seq(0,1,0.1),na.rm=T) stem(last.hc.actors) where the variable name is (in this case) last.hc.actors. All that
2014 Aug 10
1
"Fastest" way to merge 300+ .5MB dataframes?
Good afternoon, Today I was working on a practice problem. It was simple, and perhaps even realistic. It looked like this: ? Get a list of all the data files in a directory ? Load each file into a dataframe ? Merge them into a single data frame Because all of the columns were the same, the simplest solution in my mind was to `Reduce' the vector of dataframes with a call to `merge'. That
2001 Mar 01
1
How to coerce data frame elements into factors?
Greetings - In trying to do a multiple correspondence analysis, I need to coerce a data frame such that each of its columns will be a factor. Can someone offer advice on how to make this happen? I've tried this: > logic.resources.f.df<-apply(logics.resources.df, 2, factor) but: > is.factor(logic.resources.f.df$interests) [1] FALSE I've also tried individually, >
2017 Oct 27
1
[PATCH] x86: Remove unnecessary return from void function
On 23/06/17 18:23, Anton Vasilyev wrote: > The patch removes unnecessary return from void function. > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Anton Vasilyev <vasilyev at ispras.ru> Reviewed-by: Juergen Gross <jgross at suse.com> Juergen