search for: graphisoft

Displaying 20 results from an estimated 27 matches for "graphisoft".

2014 Jan 07
2
[LLVMdev] How to check Apple's LLVM build number?
...trying to track whether this bug: http://llvm.org/viewvc/llvm-project?revision=163923&view=revision has been fixed in the Apple LLVM version we use: Apple LLVM version 4.2 (clang-425.0.28) (based on LLVM 3.2svn) Any ideas how I can check that? Thanks, Ákos Somorjai Developer Support Manager GRAPHISOFT | Graphisoft Park 1. Budapest 1031 Hungary | +36 1 437-3000 | asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140107/c621992c/attachmen...
2011 Oct 21
1
[LLVMdev] Crash with optimization for size
Thanks, Bob! I guess we should be expecting a 4.2.1 update after clang 3.0 has been released, shouldn't we? Best, Akos From: Bob Wilson <bob.wilson at apple.com<mailto:bob.wilson at apple.com>> Date: Thu, 20 Oct 2011 08:46:38 -0700 To: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] Crash with optimization for size This is http://llvm.org/pr10514 Unfortunately t...
2011 Oct 20
3
[LLVMdev] Crash with optimization for size
...imization kicks in because 'data' is 16-bytes; but there's no alignment check… This seems to be a code generation error, but I couldn't reproduce it in a small application. Is this a known bug, or shall I adjust my build settings? Thanks, Ákos Somorjai Developer Support Manager GRAPHISOFT | Graphisoft Park 1. Budapest 1031 Hungary | +36 1 437-3000 | asomorjai at graphisoft.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111020/3d388ea1/attachment.html>
2012 May 02
2
[LLVMdev] RTTI handling
John, Is there any progress regarding RTTI handling in the newer builds? Thanks, Akos From: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Date: Wednesday, October 5, 2011 7:14 PM To: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] RTTI handling On Oct 5, 2011, at 3:10 AM, Somorjai, Akos wrote: The version from...
2011 Oct 20
0
[LLVMdev] Crash with optimization for size
...16-bytes; but there's no alignment check… > > This seems to be a code generation error, but I couldn't reproduce it in a small application. Is this a known bug, or shall I adjust my build settings? > > Thanks, > > Ákos Somorjai > Developer Support Manager > > GRAPHISOFT | Graphisoft Park 1. Budapest 1031 Hungary | +36 1 437-3000 | asomorjai at graphisoft.com > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llv...
2011 Oct 03
0
[LLVMdev] RTTI handling
...LLVM 3.0svn) Target: x86_64-apple-darwin10.8.0 It's part of the Xcode 4.2b7 package. Shall I try to compile it on my own? Thanks, Akos From: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Date: Mon, 3 Oct 2011 10:19:04 -0700 To: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] RTTI handling On Oct 3, 2011, at 4:42 AM, Somorjai, Akos wrote: I'm trying to...
2011 Sep 30
4
[LLVMdev] RTTI handling
...aded runtime. In the past that issue caused crashes in our app, so at the moment we are overriding __dynamic_cast to detect this problem, but that's kind of messy. I'm hoping for a better solution with llvm… (Mac OS X 10.6/10.7, clang 3.0) Thanks, Ákos Somorjai Developer Support Manager GRAPHISOFT | Graphisoft Park 1. Budapest 1031 Hungary | +36 1 437-3000 | asomorjai at graphisoft.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110930/fa98a57f/attachment.html>
2011 Oct 05
2
[LLVMdev] RTTI handling
John, The version from the Xcode 4.2 GM package (Apple clang version 3.0 (tags/Apple/clang-211.10.1)) still has the same problem. Which version should I use? Thanks, Akos From: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Date: Mon, 3 Oct 2011 17:47:06 +0000 To: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiu...
2012 May 02
0
[LLVMdev] RTTI handling
On May 1, 2012, at 11:47 PM, Somorjai, Akos wrote: > Is there any progress regarding RTTI handling in the newer builds? When you're resurrecting six-month-old threads, it's polite to quote some history. :) I don't know offhand what the state of this warning is in Xcode 4.3, and I can't comment on potential future releases. If this matters a lot to you, please just try it and
2011 Oct 03
2
[LLVMdev] RTTI handling
On Oct 3, 2011, at 4:42 AM, Somorjai, Akos wrote: > I'm trying to use this warning to check the vtable problem. Here's an example > > In mem.hpp > > class > AA { > // Construction / destruction: > protected: > AA (); > AA (const AA&); // Disabled > public: > virtual ~AA (); > }; > > In mem.cpp > > #include "mem.hpp" >
2011 Nov 27
2
[LLVMdev] LLVM 3.0rc4 Testing
Rather, use this URL for the darwin binaries: http://llvm.org/pre-releases/3.0/ -bw On Nov 25, 2011, at 1:32 AM, Somorjai, Akos wrote: > May I have the darwin binaries as well? > > Best, Akos > > > > On 11/25/11 10:31 AM, "Ákos Somorjai" <asomorjai at graphisoft.com> wrote: > >> Thanks! >> >> Ákos >> >> >> >> On 11/24/11 11:18 PM, "Bill Wendling" <wendling at apple.com> wrote: >> >>> Sorry for the delay. Tanya uploaded the binaries we have. >>> >>> -bw...
2011 Sep 30
2
[LLVMdev] RTTI handling
Thanks, John. I'll experiment with both the warning and the nm-weak external tool, and let you know the results. Best, Akos From: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Date: Fri, 30 Sep 2011 15:24:33 -0700 To: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] RTTI handling On Sep 30, 2011, at 3:04 PM, Somorjai, Akos wrote: Thanks! Yes, we...
2011 Nov 29
1
[LLVMdev] [cfe-dev] LLVM 3.0rc4 Testing
Hello, Is there a chance to get Darwin 32 bit binaries? On Mon, Nov 28, 2011 at 11:04 AM, Somorjai, Akos <ASomorjai at graphisoft.com> wrote: > Thanks, downloading at the moment. > > Best, > > Ákos > > > On 11/27/11 3:35 AM, "Bill Wendling" <wendling at apple.com> wrote: > >>Rather, use this URL for the darwin binaries: >> >>       http://llvm.org/pre-releases/3....
2011 Oct 03
0
[LLVMdev] RTTI handling
...s vtable will be emitted in every translation unit [-Wweak-vtables,3] What am I doing wrong? Shall I declare the destructor to be pure virtual (then the warning goes away)? This is not always an option, because not all of these classes are ABCs. Thanks, Akos From: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Date: Fri, 30 Sep 2011 23:35:32 +0000 To: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.ui...
2011 Oct 20
1
[LLVMdev] Crash with optimization for size
On Thu, Oct 20, 2011 at 8:46 AM, Bob Wilson <bob.wilson at apple.com> wrote: > This is  http://llvm.org/pr10514 > Unfortunately the fix did not make it into that version of clang. > On Oct 20, 2011, at 7:47 AM, Somorjai, Akos wrote: > The optimization kicks in because 'data' is 16-bytes; but there's no > alignment check… > This seems to be a code generation
2011 Nov 25
3
[LLVMdev] LLVM 3.0rc4 Testing
Thanks! Ákos On 11/24/11 11:18 PM, "Bill Wendling" <wendling at apple.com> wrote: >Sorry for the delay. Tanya uploaded the binaries we have. > >-bw > >On Nov 23, 2011, at 1:12 AM, Somorjai, Akos wrote: > >> Hello Bill, >> >> Could you please upload the rc4 binaries? >> >> Thanks in advance, >> >> Ákos >>
2011 Nov 25
0
[LLVMdev] LLVM 3.0rc4 Testing
May I have the darwin binaries as well? Best, Akos On 11/25/11 10:31 AM, "Ákos Somorjai" <asomorjai at graphisoft.com> wrote: >Thanks! > >Ákos > > > >On 11/24/11 11:18 PM, "Bill Wendling" <wendling at apple.com> wrote: > >>Sorry for the delay. Tanya uploaded the binaries we have. >> >>-bw >> >>On Nov 23, 2011, at 1:12 AM, Somorjai, Akos...
2011 Nov 28
0
[LLVMdev] LLVM 3.0rc4 Testing
...> http://llvm.org/pre-releases/3.0/ > >-bw > >On Nov 25, 2011, at 1:32 AM, Somorjai, Akos wrote: > >> May I have the darwin binaries as well? >> >> Best, Akos >> >> >> >> On 11/25/11 10:31 AM, "Ákos Somorjai" <asomorjai at graphisoft.com> wrote: >> >>> Thanks! >>> >>> Ákos >>> >>> >>> >>> On 11/24/11 11:18 PM, "Bill Wendling" <wendling at apple.com> wrote: >>> >>>> Sorry for the delay. Tanya uploaded the binaries...
2011 Sep 30
0
[LLVMdev] RTTI handling
...used crashes in our app, so at the moment we are overriding __dynamic_cast to detect this problem, but that's kind of messy. I'm hoping for a better solution with llvm… > > (Mac OS X 10.6/10.7, clang 3.0) > > Thanks, > Ákos Somorjai > Developer Support Manager > > GRAPHISOFT | Graphisoft Park 1. Budapest 1031 Hungary | +36 1 437-3000 | asomorjai at graphisoft.com > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llv...
2011 Sep 30
2
[LLVMdev] RTTI handling
...we external source libraries (like Teigha from Open Design Alliance), where we don't really have any control? Just being curious, Akos From: John McCall <rjmccall at apple.com<mailto:rjmccall at apple.com>> Date: Fri, 30 Sep 2011 10:22:02 -0700 To: Ákos Somorjai <asomorjai at graphisoft.com<mailto:asomorjai at graphisoft.com>> Cc: "llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>" <llvmdev at cs.uiuc.edu<mailto:llvmdev at cs.uiuc.edu>> Subject: Re: [LLVMdev] RTTI handling On Sep 30, 2011, at 9:15 AM, Somorjai, Akos wrote: I was wondering...