search for: ashmor

Displaying 15 results from an estimated 15 matches for "ashmor".

Did you mean: ashmore
2012 Nov 15
2
[LLVMdev] unable to interface with target machine
On 15/11/12 10:15, Philip Ashmore wrote: > On 15/11/12 08:58, Duncan Sands wrote: >>> Is there a way to get the target triple of the machine the code is running on, >>> or barring that, the machine llvm was built on? >> >> clang -v >> >> Ciao, Duncan. >> __________________________...
2012 Nov 28
0
[LLVMdev] [cfe-dev] RFC: A Great Renaming of Things (or: Let's Repaint ALL the Bikesheds!)
...h integrates Qt's doxygen documentation. Plus the build flags of the parent projects are available for reuse in client projects. It's all automake/pkg-config/git based but I hope it can serve as a point of reference - what my bike-shed looks like. A bike-shed too far? Regards, Philip Ashmore
2012 Nov 27
3
[LLVMdev] [cfe-dev] RFC: A Great Renaming of Things (or: Let's Repaint ALL the Bikesheds!)
On Nov 24, 2012, at 1:02 AM, Tinco Andringa <mail at tinco.nl> wrote: > Hi, > > I think it's an awesome idea to make sure all names are logical. It is > an essential feature of a good API to have logical naming :) > >> I really dislike that all the files and classes in the MC library >> start with MC. This is c++, not c :( > > On a similar note, all
2012 Nov 14
2
[LLVMdev] unable to interface with target machine
...l I get "error: unable to interface with target machine". But if I llvm-as -o hello-world.bc hello-world.ll && " "llc -o hello-world.S hello-world.bc && " "gcc -o hello-world hello-world.S" itworks. What am I missing? Regards, Philip Ashmore
2012 Nov 15
0
[LLVMdev] unable to interface with target machine
On 15/11/12 10:10, Duncan Sands wrote: > On 15/11/12 10:15, Philip Ashmore wrote: >> On 15/11/12 08:58, Duncan Sands wrote: >>>> Is there a way to get the target triple of the machine the code is >>>> running on, >>>> or barring that, the machine llvm was built on? >>> >>> clang -v >>> >>> Cia...
2012 Nov 15
0
[LLVMdev] unable to interface with target machine
On 14/11/12 22:11, Philip Ashmore wrote: > Hi there. > > Sorry in advance if this is a silly question. > > I've got a test program in my v3c-storyboard project > http://sourceforge.net/projects/v3c-storyboard/ > that generates LLVM assembly for a hello world program. > > If I try > >...
2001 Nov 28
1
Sharing files/directories with colons in name
...urns up when I access a file with a colon. I'm using Samba 2.2.2 (technically, Version 2.2.2debian-2 from Debian woody) under Linux 2.4.9. Is this a problem with the version I am using, or is there a configuration option that I seem to be overlooking? Thanks! Regards, Patrick -- Patrick D. Ashmore pda@procyon.com (Home) Fremont, CA pda@valinux.com (Work - VA Linux Systems) PGP/GPG Fingerprint: 1024D/F23F5A64 7625 9C7B C8BC 9CEA 235F 7B0C CB52 8483 F23F 5A64 There is little difference between radical fundamentalism and blind patriotism.
2012 Sep 29
0
[LLVMdev] doxygen tag files
...lso generate tag files. Then there's the issue of defining dependency relationships between the various projects, so they could refer to the other projects tag files. This dependency information must be there already since they get built in the correct order. Any pointers? Regards, Philip Ashmore -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-tag.patch Type: text/x-patch Size: 1861 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120929/d31f197d/attachment.bin>
2012 Nov 15
2
[LLVMdev] unable to interface with target machine
> Is there a way to get the target triple of the machine the code is running on, > or barring that, the machine llvm was built on? clang -v Ciao, Duncan.
2012 Nov 15
0
[LLVMdev] unable to interface with target machine
On 15/11/12 08:58, Duncan Sands wrote: >> Is there a way to get the target triple of the machine the code is >> running on, >> or barring that, the machine llvm was built on? > > clang -v > > Ciao, Duncan. > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >
2002 Oct 15
0
Cartridge Recycling OccYYUdqVk
...com/web/dougbcs/tng070.htm Environmental Organization WebDirectory - Recycling:Recycled Computer Products Recycling:Recycled Computer Products Recycled Printer Cartridges 90ยบ Earth - Environmental company with high tech solutions for the environment, we specialize in the Sick Building Syndrome Ashmor MicroComputer Recyclers - Buy, sell, recycle new and www.webdirectory.com/Recycling/Recycled_Computer_Products IRC - International Recycling Centre - welcome! IRC International Recycling Centre, gespecialiseerd in het verzamelen en recyclen van toner- en inkjetcartridges. www.i-r-c.nl lupMF...
2012 Oct 14
1
[LLVMdev] [Proposal] Annotated assembly output
On 13/10/12 17:24, Sean Silva wrote: > Another question: What kind of documentation you are planning to > produce for this feature? > > -- Sean Silva > > On Fri, Oct 12, 2012 at 4:36 PM, Jim Grosbach<grosbach at apple.com> wrote: >> >> On Oct 12, 2012, at 1:07 PM, Sean Silva<silvas at purdue.edu> wrote: >> >>> Hi Jim, thanks for the
2012 Nov 29
11
[LLVMdev] Getting Started
I know this process is well documented here http://llvm.org/docs/GettingStarted.html But man do I love scripting things: LLVM Getting Started (See http://llvm.org/docs/GettingStarted.html) ./getttingStarted.sh [-clang] [-compiler-rt] [-test-suite] [-branch branch] [-dir path] [-r rev] By default this script checks out ToT LLVM to the current working directory Project Options: -clang
2012 Nov 15
0
[LLVMdev] unable to interface with target machine
On 15/11/12 05:33, Duncan Sands wrote: > Hi Philip, > > ... >> > I've got a test program in my v3c-storyboard project >> > http://sourceforge.net/projects/v3c-storyboard/ >> > that generates LLVM assembly for a hello world program. >> > >> > If I try >> > >> > clang -o hello-world hello-world.ll >> > >>
2010 Mar 21
0
Validates uniqueness scope
In a Rails 2.x validation to check if the name of some model is unique within a some category, I would use: `validates_uniqueness_of :name, :scope => :category_id` In Rails 3, this is replaced with: `validates :name, :uniqueness => true` However, I can''t seem to find a method of defining the uniqueness'' scope. Am I missing something? Thanks, Angelo -- You received