search for: kirtzidis

Displaying 20 results from an estimated 46 matches for "kirtzidis".

2008 Oct 24
5
[LLVMdev] Growing up CMake
Argiris Kirtzidis <akyrtzi at gmail.com> writes: > How does updating the CMake produced VC++ project files work ? > I mean: > > -I have CMake produce VC++ project files > -Compile the solution > -Do a svn update and pick up a couple of files > -Have CMake produce new project files > -N...
2009 Apr 14
2
[LLVMdev] problems with dwarf/gdb
Argiris Kirtzidis wrote: > > ... > > Try > llc -disable-fp-elim gdb1.bc > > Thanks, I would never have guessed that :-). Are there any other optimizations that are harmful to debug info that I should know about? Thanks -- Ken -- View this message in context: http://www.nabble.com/probl...
2008 Oct 24
0
[LLVMdev] Growing up CMake
Óscar Fuentes wrote: > Argiris Kirtzidis <akyrtzi at gmail.com> writes: > > >> How does updating the CMake produced VC++ project files work ? >> I mean: >> >> -I have CMake produce VC++ project files >> -Compile the solution >> -Do a svn update and pick up a couple of files >> -Have...
2008 Oct 24
2
[LLVMdev] Growing up CMake
Argiris Kirtzidis <akyrtzi at gmail.com> writes: > I gave it a try and unfortunately it doesn't seem practical to use > CMake-produced VC++ projects. Every time you run CMake so that the VC++ > projects include new files, the entire solution gets rebuilt. I recall some discussion about the beh...
2008 Mar 19
5
[LLVMdev] Proposal for GSoC project for clang front end
...developed an automatic wrapper for Ogre3D (http://www.ogre3d.org), that produces bindings for the CLR (http://sourceforge.net/projects/mogre). I think that LLVM+clang is the future of C++ development, and I'd be really happy to make a useful contribution to this great project :). -Argiris Kirtzidis
2008 Oct 02
1
[LLVMdev] MS C++ gives error C2371 on this code while (obviously)gcc compiles it fine
Fair enough, you win this round. ;P (Which actually makes me happy as that makes things a lot more consistent and sensible.) -J -------------------------------------------------- From: "Argiris Kirtzidis" <akyrtzi at gmail.com> Sent: Thursday, October 02, 2008 12:32 PM To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> Subject: Re: [LLVMdev] MS C++ gives error C2371 on this code while(obviously)gcccompiles it fine ... > See 6.4p2: "The rules for conditio...
2008 Oct 25
0
[LLVMdev] Growing up CMake
Óscar Fuentes wrote: > Argiris Kirtzidis <akyrtzi at gmail.com> writes: > > >> I gave it a try and unfortunately it doesn't seem practical to use >> CMake-produced VC++ projects. Every time you run CMake so that the VC++ >> projects include new files, the entire solution gets rebuilt. >> &...
2009 Apr 15
0
[LLVMdev] problems with dwarf/gdb
On Apr 14, 2009, at 4:19 PMPDT, Ken McMillan wrote: > > > > Argiris Kirtzidis wrote: >> >> ... >> >> Try >> llc -disable-fp-elim gdb1.bc >> >> > > Thanks, I would never have guessed that :-). > > Are there any other optimizations that are harmful to > debug info that I should know about? Lots of them. Partly this is...
2008 Apr 02
2
[LLVMdev] Proposal for GSoC project for clang front end
On Wednesday 19 March 2008 21:27:18 Chris Lattner wrote: > On Wed, 19 Mar 2008, Argiris Kirtzidis wrote: > > I'd like to hear your opinions and ideas for a proposal to improve > > support for C++ parsing for LLVM's clang front end. > > Some meta feedback: C++ support in clang is a huge project, far and away > more than any mortal can get done in a summer. While it...
2009 Apr 15
2
[LLVMdev] problems with dwarf/gdb
...hat I can step to line 4, but I can't set a breakpoint there. (I used -disable-fp-elim in the compilation). Have you seen this before? Thanks -- Ken Dale Johannesen wrote: > > > On Apr 14, 2009, at 4:19 PMPDT, Ken McMillan wrote: > >> >> >> >> Argiris Kirtzidis wrote: >>> >>> ... >>> >>> Try >>> llc -disable-fp-elim gdb1.bc >>> >>> >> >> Thanks, I would never have guessed that :-). >> >> Are there any other optimizations that are harmful to >> debug info that I sh...
2008 Jul 01
2
[LLVMdev] build on windows
...igure" does not create any lib file. But it exists on some projects. is something wrong by me ? I also send a screenshot (properties of llvm-dis) Thanks Quang -----Ursprüngliche Nachricht----- Von: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] Im Auftrag von Argiris Kirtzidis Gesendet: Dienstag, 1. Juli 2008 19:37 An: LLVM Developers Mailing List Betreff: Re: [LLVMdev] build on windows Le Anh Quang wrote: > Hi, > but on some other project, they require "configure.lib". What is this one ? > Thanks Hi Le Anh, What project are you talking about, and...
2008 Mar 19
0
[LLVMdev] Proposal for GSoC project for clang front end
On Wed, 19 Mar 2008, Argiris Kirtzidis wrote: > I'd like to hear your opinions and ideas for a proposal to improve > support for C++ parsing for LLVM's clang front end. Some meta feedback: C++ support in clang is a huge project, far and away more than any mortal can get done in a summer. While it would be possible to s...
2009 Apr 21
2
[LLVMdev] problems with dwarf/gdb
...p/ccbAj8x9.s:94: Error: suffix or operands invalid for `pop' Don't know what that's about. If I use the -S option and then compile the .s file with gcc, it works fine (but again, can't set breakpoints in gdb). I am currently using gdb 6.6. Will try 6.8... Thanks -- Ken Argiris Kirtzidis wrote: > > Ken McMillan wrote: >> I see. Here's another interesting issue: >> >> (gdb) b gdb1.c:4 >> No line 4 in file "gdb1.c". >> (gdb) step >> foo () at /home/mcmillan/projects/impact2/test//gdb1.c:4 >> 4 x++; >> (gdb) >&...
2008 Oct 02
2
[LLVMdev] MS C++ gives error C2371 on this code while (obviously)gcc compiles it fine
...but the rules for while statements actually force the declaration outside of the condition of the if statement. You are correct, though, that gcc should be emitting an error in the case of the if statement. Naughty gcc. -J -------------------------------------------------- From: "Argiris Kirtzidis" <akyrtzi at gmail.com> Sent: Thursday, October 02, 2008 11:33 AM To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu> Subject: Re: [LLVMdev] MS C++ gives error C2371 on this code while(obviously)gcccompiles it fine > Jay Freeman (saurik) wrote: >> gcc is...
2008 Oct 02
0
[LLVMdev] MS C++ gives error C2371 on this code while (obviously)gcc compiles it fine
Jay Freeman (saurik) wrote: > gcc is correct. According to the ISO specification, the for-init-statement > is supposed to inject any variable names into the same declarative scope as > the condition of an equivalent restructuring of the loop in the form of a > while statement, which in turn fronts the declaration to an extra scope that > surrounds the /entire/ loop construct.
2008 Oct 23
2
[LLVMdev] Windows build broken?
Óscar Fuentes <ofv at wanadoo.es> writes: >> It appears the Windows build has regressed over the past week. >> >> The build fails quite early (during the "Performing TableGenStep" >> phase). >> >> Any help/pointers would be appreciated. > > It breaks for me because the usage of INT64_C, which was introduced on > r57663 and 57668. >
2008 Oct 23
0
[LLVMdev] Windows build broken?
I have updated "DataTypes.h.in", could you do a svn update and see if it works ? -Argiris Óscar Fuentes wrote: > Óscar Fuentes <ofv at wanadoo.es> writes: > > >>> It appears the Windows build has regressed over the past week. >>> >>> The build fails quite early (during the "Performing TableGenStep" >>> phase).
2008 Oct 24
2
[LLVMdev] Windows build broken?
Argiris Kirtzidis <akyrtzi at gmail.com> writes: > I have updated "DataTypes.h.in", could you do a svn update and see if it > works ? Your change has been superseded by http://llvm.org/viewvc/llvm-project?rev=58048&view=rev Now tblgen.exe builds fine with my CMake build system. Guess i...
2008 Oct 24
0
[LLVMdev] Growing up CMake
How does updating the CMake produced VC++ project files work ? I mean: -I have CMake produce VC++ project files -Compile the solution -Do a svn update and pick up a couple of files -Have CMake produce new project files -Now, do I have to rebuild the entire solution again ? -Argiris
2008 Oct 25
2
[LLVMdev] Growing up CMake
Argiris Kirtzidis <akyrtzi at gmail.com> writes: >> I recall some discussion about the behavior you describe on the cmake >> ml, but can't find it right now. >> >> IIRC, once generated the project files, you shouldn't need to re-run >> cmake, ever. CMake inserts something...