Displaying 20 results from an estimated 76 matches for "comil".
Did you mean:
comic
2012 May 08
2
[LLVMdev] RE : RE : svn trunk comilation error
> De : 陳韋任 [chenwj at iis.sinica.edu.tw]
> Date d'envoi : mardi 8 mai 2012 11:37
> À : Rinaldini Julien
> Cc: LLVM Developers Mailing List
> Objet : Re: [LLVMdev] RE : svn trunk comilation error
>
> Hi Rinaldini,
>
> You probably need to illustrate what your enviroment is, what revision you
> checkout and how you build LLVM. I have no problem build LLVM svn here. Have
> you checked tools/llvm-config/LibraryDependencies.inc is exist?
>
> Regards,
> chen...
2012 May 09
0
[LLVMdev] RE : RE : RE : svn trunk comilation error
> De : 陳韋任 [chenwj at iis.sinica.edu.tw]
> Date d'envoi : mardi 8 mai 2012 11:37
> À : Rinaldini Julien
> Cc: LLVM Developers Mailing List
> Objet : Re: [LLVMdev] RE : svn trunk comilation error
>
> Hi Rinaldini,
>
> You probably need to illustrate what your enviroment is, what revision you
> checkout and how you build LLVM. I have no problem build LLVM svn here. Have
> you checked tools/llvm-config/LibraryDependencies.inc is exist?
>
> Regards,
> chen...
2012 May 08
2
[LLVMdev] RE : svn trunk comilation error
...different director, one for source and one for build (where I run my configure)...
Cheers
________________________________________
De : 陳韋任 [chenwj at iis.sinica.edu.tw]
Date d'envoi : mardi 8 mai 2012 05:21
À : Rinaldini Julien
Cc: LLVM Developers Mailing List
Objet : Re: [LLVMdev] svn trunk comilation error
> I configured it with: CC=gcc CXX=g++ ./configure --enable-optimisation=yes --enable-assertions=no
^^^^^^^^^^^
I recommend you use out-of-tree build, which means you check out the source
into one directory (llvm.src/), then build in another...
2012 May 08
0
[LLVMdev] RE : svn trunk comilation error
Hi Rinaldini,
You probably need to illustrate what your enviroment is, what revision you
checkout and how you build LLVM. I have no problem build LLVM svn here. Have
you checked tools/llvm-config/LibraryDependencies.inc is exist?
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage:
2012 May 08
0
[LLVMdev] svn trunk comilation error
> I configured it with: CC=gcc CXX=g++ ./configure --enable-optimisation=yes --enable-assertions=no
^^^^^^^^^^^
I recommend you use out-of-tree build, which means you check out the source
into one directory (llvm.src/), then build in another directory (llvm.obj).
Something like,
---
$ ls
llvm.src/ llvm.obj/
$ cd llvm.obj; ../llvm.src/configure; make
2012 May 07
3
[LLVMdev] svn trunk comilation error
Hi there,
I'm having some trouble compiling llvm from trunk in the svn.
I configured it with: CC=gcc CXX=g++ ./configure --enable-optimisation=yes --enable-assertions=no
But I have this error:
llvm[1]: Building llvm-config BuildVariables.inc file.
llvm[1]: Compiling llvm-config.cpp for Release build
3.1_svn/llvm/tools/llvm-config/llvm-config.cpp:45:35: fatal error: LibraryDependencies.inc:
2009 Apr 18
2
Comiling xen-3.4.0-rc2
Hello,
I''m installs xena 3.4.0-rc2 to test , and I would like to know if it
is possible not to download on kernel 2.6.18, since I have installed
2.6.26-2 (debian lenny 5.0)?
Regards,
For@ll
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2009 Jun 28
0
[LLVMdev] The document fault in llvm doc. And a comiling error
most html document need to add
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
int <head> section of html
such as
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
other staff
</head>
this is the correct style.
.\llvm\docs\SourceLevelDebugging.html
Chris Lattner sabre at nondot.org
2004 Aug 06
3
Error when comiling ices-2.0
When compiling ices-2.0, I got the following error:
In file included from config.h:4,
from input.c:15:
stream.h:16:25: shout/shout.h: No such file or directory
Has anyone encountered this problem before? It appears that these headers are
missing...does anyone know where they may be located? Any insight is much
appreciated.
dap
--
--
D. Anthony Patrick
[
2017 Jan 10
6
Can't comile bundled PJSIP on CentOS 7
Hello,
I'm setting up an Asterisk 13.13.1 cluster on two CentOS boxes.
I followed this:
cd /usr/src
wget ... asterisk-13.13.1.tar.gz
tar zxf asterisk-13.13.1.tar.gz
cd asterisk-13.13.1
ASTERISK_CONFIGURE="--libdir=/usr/lib64 --prefix=/usr"
./configure ${ASTERISK_CONFIGURE} --with-pjproject-bundled
make menuselect (shows res-srtp is available)
make
latest make command fails with
2006 Nov 25
3
[LLVMdev] LLVM Newb: Getting started
...create platform independent code from D, then you should
> be able to just use the LLVM bytecode representation.
D itself is platform independent, but since D is also aimed at system
programming it has an inline asembler. However one can supply
different kinds of assembler through conditional comilation, so the
following would be completely valid:
void foo(){
version(x86) {
asm {
/* x86 assembler */
}
} else version(llvm) {
asm {
/* llvm assembler */
}
} else {
/* plain D implementation */
}
}
<http://www.digitalmars.com/d/iasm.html>
&l...
2002 Jul 03
0
R Guide for Windows Users
...le R for Windows" that I put up a few months ago. To get it go
to http://www.stat.auckland.ac.nz/~kwan022/rinfo.php
Here is the table of contents:
1 Introduction
2 Installation
2.1 Installing R Base
2.2 Installing packages
3 Running R
3.1 Rgui
3.2 Rcmd
3.3 Rterm
4 Comile R Source
4.1 Preparation
4.2 Set PATH Variable
4.2.1 Windows 9x
4.2.2 Windows ME
4.2.3 Windows NT, 2000, and XP
4.3 Comiling R from Source
4.3.1 Building Bitma Device Support
4.3.2 Building Tcl/Tk Support
4.3.3 Building the Ma...
2005 Aug 03
1
app_dbodbc for asterisk stable 1.09
Hi,
Has anyone manage to comile app_dbodbc or ast_data with the latest
stable release (1.09). If so can you give some guidence on howto do it
as I have trouble getting either working.
Umar
2007 May 16
1
Unable to compile "Matrix" package
...ebsd 6.2 I updated all the add-on packages
in an R session via update.packages(...). R was unable to install
the "Matrix" package because it couldn't find the package.
Therefore I downloaded the *.tar.gz from the CRAN site and issued
R CMD INSTALL Matrix_0.99875-1.tar.gz
but the comilation ended in an error (see the complete attached
r_log.tar.gz)
cc -std=gnu99 -I/usr/local/lib/R/include -I/usr/local/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES -I../UFc
cc -std=gnu99 -I/usr/local/lib/R/include -I/usr/local/lib/R/include -I/usr/local/include -D__NO_MATH_INLINE...
2005 Sep 05
1
[LLVMdev] a very beginning question
Thank you.
I'm only consider about how the compiler comiles c program to LLVM IR.
I know there should be a scanner, parser, and IR generator. But where
is the main entrance and how about the flow of the process, especially
about the IR generator?
> shding at mtu.edu wrote:
>> Hi,
>> Where can I find the main function of llvm compiler i...
2004 Dec 09
1
[LLVMdev] Question about insert call func with pionter parameter
...run this pass, finally, I got errors as the following.
" Call parameter type does not match function signature!"
[21 x sbyte] c"This a example\00\00\00\00\00\00"
sbyte* call void %stat_func( [21 x sbyte] c "this a example\00\00\00\00"
...........
Broken module found, comilation aborted!
........
The information comes from verifier.cpp which mean the type of parameter of the function differ with the type of parameter the code passed.
I knew that the constantarry differ from sbyte pointer ( sbyte*), but I tried to change the code to
>Function *exFunc = M->get...
2001 Jul 23
2
[fwd] Problems with ogg123 on OpenBSD (from: ryancooley@yahoo.com)
...e BSDs.
As it is, when compiling libao I get errors such as
"SNDCTL_DSP_GETODELAY undeclared" and "RTLD_NOW undeclared". While I'm
not a C programer, I had the imagination to declare the variables
needed. With that error gone, I was free to install the libao library
and comile the rest of the package. When testing I discovered that
ogg123 had no idea how to actually play a sound. I tried the "-d oss "
option, to discover that oss didn't exist.
I took a trip to google hoping for some more information... I did
everything from making a rc file to linking...
2016 Feb 09
4
IR with no optimization
...i32 5, !dbg !327
%2 = load %struct.pglist_data*, %struct.pglist_data** %1, align 8,
!dbg !327
call void @llvm.dbg.value(metadata %struct.pglist_data* %2, i64 0,
metadata !219, metadata !305), !dbg !328 }
*Store instruction has been optimized, and no variable name in IR.*
When I comile with -O0, I have the following IR:
define %struct.zone* @next_zone(%struct.zone* %zone) #0 !dbg !211 {
%1 = alloca %struct.zone*, align 8
%pgdat = alloca %struct.pglist_data*, align 8
store %struct.zone* %zone, %struct.zone** %1, align 8
call void @llvm.dbg...
2001 Mar 11
6
what about socks support?
Is there any plan to add socks 4 or socks 5 support to openssh like
the original ssh developed in finland??
Michael
Michael at bizsystems.com
2016 Feb 09
2
IR with no optimization
...list_data** %1, align 8,
>> !dbg !327
>>
>> call void @llvm.dbg.value(metadata %struct.pglist_data* %2, i64 0,
>> metadata !219, metadata !305), !dbg !328 }
>>
>> *Store instruction has been optimized, and no variable name in IR.*
>>
>> When I comile with -O0, I have the following IR:
>>
>> define %struct.zone* @next_zone(%struct.zone* %zone) #0 !dbg !211 {
>>
>> %1 = alloca %struct.zone*, align 8
>>
>> %pgdat = alloca %struct.pglist_data*, align 8
>>
>> store %struct.z...