similar to: [LLVMdev] Assertion in Function.cpp when linking modules

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] Assertion in Function.cpp when linking modules"

2013 Mar 06
0
[LLVMdev] LangRef/implementation inconsistency: What is the intended constraint on function return types?
PR15447 <http://llvm.org/bugs/show_bug.cgi?id=15447> brings up that there is an inconsistency both within LangRef and between LangRef and the implementation regarding what is an allowed return type. LangRef says: "The return type of a function type is a first class type or a void type." <http://llvm.org/docs/LangRef.html#id14> and also, contrarily,
2010 Jun 23
2
step-to-step Installation Guide
Hello, I'm new here, and I'm from Germany, so please be patient with me because my English is not so good ;) I am searching for a Step-to-Step Guide to first-configure Dovecot. I want to create virtual Users wich can logon to my Server to a Webinterface to call theire mails. I think IMAP is the right protokoll but it should be safe, so i think IMAPs is better. Unfortunately I am not
2012 Oct 08
1
[LLVMdev] Fwd: Multiply i8 operands promotes to i32
Hello Pedro, As others have said we're assuming that you're using Clang as the frontend, the MSP430TargetInfo class inside lib/Basic/Targets.cpp (clang codebase) set ints to be 16 bits wide, so you should get 16bit mults straight away without promotion. But anyways for 8bit multiplicantions you can do the following to bypass argument promotion: 1) go to the lib/CodeGen/TargetInfo.cpp
2009 Sep 10
1
v.1.2.4 deliver maildir quota does not work
Hi, I'm using deliver for storing new mails (nfs). Since v.1.2 deliver does not reject mails if over quota (maildir quota). test with v. 1.1.18: # HOME=/tmp/maildir/ /path/dovecot-1.1.18/libexec/dovecot/deliver -e -c /path/dovecot-1.1.18/etc/dovecot.conf # Quota exceeded (mailbox for user is full) test with v. 1.2.4: # HOME=/tmp/maildir/ /path/dovecot-1.2.4/libexec/dovecot/deliver -e -c
2010 May 19
1
rrsync with --delete
Hi all, is it possible to get rrsync with the "--delete" option working? Or is the rsync server really started unidirectional in this special scenario? Regards. JS -- GRATIS f?r alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
2010 Aug 04
0
(no subject)
-- Mit freundlichen Grüßen, SpiegelEiXXL GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01 _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2009 Oct 06
0
Lancom 1722 and Asterisk (i need HELP)
Hello, i have a big problem... i want to connect my asterisk server to a lancom 1722 device (ISDN/SIP) Gateway. sip.conf: [general] context=default allowguest=yes realm=10.1.1.209 bindport=5060 bindaddr=0.0.0.0 tos_sip=cs3 ; f?r SIP-Pakete (Kommunikationsaufbau) tos_audio=ef ; f?r RTP-Audio-Pakete tos_video=af41 ; f?r RTP-Video-Pakete allow=all dtmfmode=rfc2833 canreinvite=yes
2009 Jul 15
0
RESOLVED: strange quota behaviour with dovecot 1.1.7
Hi, I just wanted to tell you that my problems are resolved now. Seems that Timo had the essential hint for me. Thank you very much!! :-) On 27.06.2009 23:40, Timo Sirainen wrote: >> passdb: >> driver: pam >> passdb: >> driver: sql >> args: /etc/dovecot/dovecot-sql.conf > > Do you really want to have system users too? No, I don?t want to :-)
2010 Apr 08
1
unknown user
Hi, im in the process of setting up a virtual domain next to a real one with dovecot and postfix. Looks like postfix sends the mail to deliver: #mail.info postfix/pipe[23588]: F254880ED8: to=<julius at abm.ath.cx>, relay=dovecot, delay=0.04, delays=0.03/0/0/0.01, dsn=5.1.1, status=bounced (user unknown) but dovecot doesnt know my user: #dovecot-info.log dovecot: Apr 08 16:16:42 Info:
2010 Apr 10
1
Error in SimpleVirtualInstall
Hi, i still got a little Problem (Thunderbird cant copy my mail to "Gesendet") but besides that i can send and receive mail. ive used: http://wiki.dovecot.org/HowTo/SimpleVirtualInstall there it says that /etc/dovecot/passwd should look like: test:{PLAIN}pass bill:{PLAIN}secret timo at example.com:{PLAIN}hello123 dave at example.com:{PLAIN}world234 joe at elsewhere.org:{PLAIN}whee
2009 Dec 15
0
problems when trying to upgrade from Samba4 alpha 8 to alpha10
Hi, I have installed Samba 4 alpha8 on Ubuntu Server 9.10 with openldap backend (2.4.20) as described in http://wiki.samba.org/index.php/Samba4/HOWTO/Ubuntu_Server_9.04; which is working fine so far. Now, I tried to upgrade to alpha 10. The steps I took were: - checked out alpha 10 from git - run make (compiled everything fine) - shut down running samba daemon - tried to run?
2010 Jun 22
0
Change stdvga on Windows 7 domU
Is it possible to change stdvga after installation of Windows 7 as PV domU? Tnx. -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01 _______________________________________________ xen-discuss mailing list xen-discuss@opensolaris.org
2010 Jul 28
0
Facing Xen 4.0 Problems, I Have Some Basic Questions
Hello there, I am having serious trouble bringing up my (remote) box with Xen 4.0.1-rc5 and 2.6.32.16-xen. I trust I''m going to sort it all out but I have a few questions for which I did not find answers on the Web so far. Brief answers to point me in the right direction would be highly appreciated. 1) Building Xen 4.0 on a dev box, then install on a similar target: Can I build Xen on
2010 Mar 03
2
[LLVMdev] LLVM for heterogenous platforms
Hi llvm, it's for sure an obvious idea to use llvm as IR for heterogenous platforms (e.g. CPU+GPU). In theory someone could write plain C/C++ code, which by clang is translated to llvm-IL and then together with JIT-backends packed in an appropriate executable. Thus all the limitations and hassles of openCL or CUDA could be avoided. I wonder if there already is a related project? Of course in
2011 Sep 16
0
[LLVMdev] How to duplicate a function?
Hi all, I am a newbie in LLVM and I am trying to replace the function like: old function || new function ======================================= int haha(int a) { int haha(int a, char* ID) { ===> } } Of course in the newly replaced function "int haha(int,
2010 Apr 09
1
How to compile speex with XCode (for iPhone App)?
Hi, I'm currently trying to use Speex on the iPhone but have some difficulties to get Speex compiled with XCode. Unfortunately I'm very new to XCode and it would be great if someone could give me a hint what the problem is. Here is what I did in detail: 1. Downloaded the Source Code speex-1.2rc1.tar.gz from www.speex.org 2. Start Xcode 3.1.4 3. File > New Project ... 4. iPhone OS
2010 Jan 08
0
dovecot-1.2-sieve-0.1.3 compile error
Hi, when I try to compile dovecot-1.2-sieve-0.1.3 on my NAS I get the error below and I have no idea why and who to fix this. I have a Qnap TS239pro NAS with a Intel Atom CPU running Linux. I installed and configured the ipkg dovecot packet (1.2.beta1). Getting mails via fetchmail and send them with deliver to the IMAP. Not I want to include sieve to filter mails as this is not part of the
2010 Jul 20
3
pci.backhide
Hello List If i have a PCI=[08:00.0](example) in any DomU config file the xm shutdown <ID> shuts down this DomU and the Dom0! Otherwise i shutdown this DomU from inside the DomU with halt or shutdown -r now, the Dom0 shuts down to. This happend on Xen 3.4.2 and Xen 4.0 (Kernel 2.6.18.8-xen, 2.6.18.8-xen0) The Operating System to Compile xen was Debian Lenny and the Dom0 os. Without
2010 Jul 22
2
Feature request: fsh-like functionality
I have recently found the "fsh" program (http://www.lysator.liu.se/fsh/) which offered exactly what I needed. It is a great program but it is not maintained and was even thrown out of Debian because it was claimed that OpenSSH provided anything FSH offers. In fact, however, I miss a few features in OpenSSH that could easily be added inspired by FSH and make a very valuable addition in
2009 Nov 25
1
SpeexBits ...
Hi Marian, I took a brief look at RFC 5574 and as far as I understand, you can simply do it like this: SpeexBits b; speex_encode(state, some320bytePCM1, &b); speex_encode(state, some320bytePCM2, &b); After that, get the encoded data with speex_bits_write and put it in your packet. Mark -----Original Message----- From: speex-dev-bounces at xiph.org [mailto:speex-dev-bounces at