search for: jordan_rose

Displaying 20 results from an estimated 25 matches for "jordan_rose".

2013 Dec 18
2
[LLVMdev] CMake changes
On Dec 17, 2013, at 9:32 , Jordan Rose <jordan_rose at apple.com> wrote: > > On Dec 17, 2013, at 9:24 , Jordan Rose <jordan_rose at apple.com> wrote: > >> Hi, Takumi. Your CMake changes seem to be working just fine with the standalone Xcode build. However, the build products are still being put in bin/Debug instead of Debu...
2013 Dec 18
0
[LLVMdev] CMake changes
On Dec 18, 2013, at 9:44 , Jordan Rose <jordan_rose at apple.com> wrote: > > On Dec 17, 2013, at 9:32 , Jordan Rose <jordan_rose at apple.com> wrote: > >> >> On Dec 17, 2013, at 9:24 , Jordan Rose <jordan_rose at apple.com> wrote: >> >>> Hi, Takumi. Your CMake changes seem to be working just fi...
2013 Dec 17
0
[LLVMdev] CMake changes
On Dec 17, 2013, at 9:24 , Jordan Rose <jordan_rose at apple.com> wrote: > Hi, Takumi. Your CMake changes seem to be working just fine with the standalone Xcode build. However, the build products are still being put in bin/Debug instead of Debug/bin. Was that supposed to change yet? Maybe Xcode needs different settings? > > (I think I...
2013 Dec 17
2
[LLVMdev] CMake changes
Hi, Takumi. Your CMake changes seem to be working just fine with the standalone Xcode build. However, the build products are still being put in bin/Debug instead of Debug/bin. Was that supposed to change yet? Maybe Xcode needs different settings? (I think I looked into this once and it was non-trivial to change for Xcode, so if it's working for you I guess you don't need to worry about
2012 Oct 20
3
[LLVMdev] Unable to build PBQP/Graph.h with libc++
Hi, everyone. Today I was trying to build LLVM with libc++ and C++11 enabled, and I ran into this: http://stackoverflow.com/questions/10065384/instantiation-of-a-list-with-an-incomplete-type-in-a-typedef Basically, PBQP/Graph.h forward-declares classes, then tries to get iterators for std::lists of those classes. This is technically undefined behavior. I tried fudging with the order of
2012 Oct 20
2
[LLVMdev] Unable to build PBQP/Graph.h with libc++
...s is a known issue with the current PBQP data structures. I'm working on an overhaul of the PBQP allocator at the moment which should address this. - Lang. On Sat, Oct 20, 2012 at 2:08 PM, Benjamin Kramer <benny.kra at gmail.com>wrote: > > On 20.10.2012, at 22:47, Jordan Rose <jordan_rose at apple.com> wrote: > > > Hi, everyone. Today I was trying to build LLVM with libc++ and C++11 > enabled, and I ran into this: > > > > > http://stackoverflow.com/questions/10065384/instantiation-of-a-list-with-an-incomplete-type-in-a-typedef > > > > Basica...
2013 Jan 24
1
[LLVMdev] [cfe-dev] OpenCL SPIR/NVPTX code generation
...; wrote: > Hi Jordan,**** > > You’re right, and the driver -target option works perfectly with the SPIR > triples.**** > > ** ** > > Thanks**** > > Guy Benyei**** > > [image: email_signature_guy_new2]**** > > ** ** > > *From:* Jordan Rose [mailto:jordan_rose at apple.com] > *Sent:* Wednesday, January 23, 2013 19:47 > *To:* Benyei, Guy > *Cc:* ankur deshwal; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu > *Subject:* Re: [cfe-dev] OpenCL SPIR/NVPTX code generation**** > > ** ** > > ** ** > > On Jan 23, 2013, at 4:04 , &quot...
2012 Oct 20
0
[LLVMdev] Unable to build PBQP/Graph.h with libc++
On 20.10.2012, at 22:47, Jordan Rose <jordan_rose at apple.com> wrote: > Hi, everyone. Today I was trying to build LLVM with libc++ and C++11 enabled, and I ran into this: > > http://stackoverflow.com/questions/10065384/instantiation-of-a-list-with-an-incomplete-type-in-a-typedef > > Basically, PBQP/Graph.h forward-declares cl...
2012 Nov 15
4
[LLVMdev] RFC: put commit messages in *-commits subject lines?
Hi, everyone. I was comparing our commit messages with another commit list I'm on, and I realized (not for the first time) that our subject lines are less than useful. Why don't we have the first line of our commit messages in the subject lines? Compare: [cfe-commits] r167788 - in /cfe/trunk: lib/Analysis/CFG.cpp test/Analysis/dead-stores.cpp with [cfe-commits] r167788 - Fix bad CFG
2014 Jul 23
2
[LLVMdev] sys::path::system_temp_directory vs. sys::fs::createTemporaryFile
Hi, all. I noticed recently that llvm::sys::fs::createTemporaryFile does not use llvm::sys::path::system_temp_directory, instead relying on its platform-specific helper TempFile. Is there any reason for this disparity? The two implementations are not in sync, either: - TempDir honors TMPDIR, TMP, TEMP, TEMPDIR, and a configuration-settable P_tmpdir on Unix-y systems. system_temp_directory just
2012 Oct 23
0
[LLVMdev] Unable to build PBQP/Graph.h with libc++
...structures. I'm working > on an overhaul of the PBQP allocator at the moment which should address > this. > > - Lang. > > > On Sat, Oct 20, 2012 at 2:08 PM, Benjamin Kramer <benny.kra at gmail.com>wrote: > >> >> On 20.10.2012, at 22:47, Jordan Rose <jordan_rose at apple.com> wrote: >> >> > Hi, everyone. Today I was trying to build LLVM with libc++ and C++11 >> enabled, and I ran into this: >> > >> > >> http://stackoverflow.com/questions/10065384/instantiation-of-a-list-with-an-incomplete-type-in-a-typedef &g...
2012 Nov 15
0
[LLVMdev] [cfe-dev] RFC: put commit messages in *-commits subject lines?
On Thu, Nov 15, 2012 at 2:20 PM, Jordan Rose <jordan_rose at apple.com> wrote: > Hi, everyone. I was comparing our commit messages with another commit list I'm on, and I realized (not for the first time) that our subject lines are less than useful. Why don't we have the first line of our commit messages in the subject lines? Compare: > &g...
2014 Jul 18
2
[LLVMdev] [cfe-dev] Use of Smart Pointers in LLVM Projects
On Fri, Jul 18, 2014 at 12:06 PM, Jordan Rose <jordan_rose at apple.com> wrote: > I don't have much to add here besides +1. I think using std::unique_ptr > even for create* functions/methods is the right way to go. +1 smart pointers here are a win in terms of safety and self-documentation. I don't see why create* factories should be tre...
2013 Jan 24
0
[LLVMdev] [cfe-dev] OpenCL SPIR/NVPTX code generation
Hi Jordan, You're right, and the driver -target option works perfectly with the SPIR triples. Thanks Guy Benyei [email_signature_guy_new2] From: Jordan Rose [mailto:jordan_rose at apple.com] Sent: Wednesday, January 23, 2013 19:47 To: Benyei, Guy Cc: ankur deshwal; cfe-dev at cs.uiuc.edu; llvmdev at cs.uiuc.edu Subject: Re: [cfe-dev] OpenCL SPIR/NVPTX code generation On Jan 23, 2013, at 4:04 , "Benyei, Guy" <guy.benyei at intel.com<mailto:guy.benyei at i...
2013 Jan 23
2
[LLVMdev] [cfe-dev] OpenCL SPIR/NVPTX code generation
On Jan 23, 2013, at 4:04 , "Benyei, Guy" <guy.benyei at intel.com> wrote: > Hi Ankur, > Since you use –Xclang, the clang executable passes multiple triples to “clang -cc1”. You can see that if you add the -v option. I’m sure there is someone here who can explain it better than I… > Anyhow, I think you better use clang -cc1. Make sure -cc1 is the first command line option
2012 Oct 17
0
[LLVMdev] [cfe-dev] Announcement: Phabricator for code reviews
On Wed, Oct 17, 2012 at 9:05 PM, Jordan Rose <jordan_rose at apple.com> wrote: > Still basically unusable with Apple Mail's obstinate refusal to respect > "In-reply-to" or "References". I'm definitely giving Phabricator patches > less attention because the CCs to cfe-commits are too hard to follow. I > realize t...
2014 Sep 24
2
[LLVMdev] Commit message policy?
On 25 September 2014 00:03, Tim Northover <t.p.northover at gmail.com> wrote: > I tend to follow something like that anyway so I think it's a good > idea, but if anything I'd prefer a longer title line than the body. > Particularly with the prefixes we tend to put in there, 50 chars is > hardly anything. I only mentioned 50-col because that's what Vim helps me do
2014 Jul 25
2
[LLVMdev] sys::path::system_temp_directory vs. sys::fs::createTemporaryFile
...ILE arguments and use the first that exists. 2. We should make sure that the platform specific pieces live in their respective Path.inc files. On Thu, Jul 24, 2014 at 9:44 AM, Duncan P. N. Exon Smith < dexonsmith at apple.com> wrote: > > > On 2014-Jul-23, at 15:26, Jordan Rose <jordan_rose at apple.com> wrote: > > > > Hi, all. I noticed recently that llvm::sys::fs::createTemporaryFile does > not use llvm::sys::path::system_temp_directory, instead relying on its > platform-specific helper TempFile. Is there any reason for this disparity? > > > > The tw...
2012 Nov 15
0
[LLVMdev] [cfe-dev] RFC: put commit messages in *-commits subject lines?
On Thu, Nov 15, 2012 at 2:20 PM, Jordan Rose <jordan_rose at apple.com> wrote: > Hi, everyone. I was comparing our commit messages with another commit list I'm on, and I realized (not for the first time) that our subject lines are less than useful. Why don't we have the first line of our commit messages in the subject lines? Compare: > &g...
2014 Jul 25
2
[LLVMdev] sys::path::system_temp_directory vs. sys::fs::createTemporaryFile
On Jul 25, 2014, at 13:44 , Rafael Espíndola <rafael.espindola at gmail.com> wrote: > On 25 July 2014 16:31, David Majnemer <david.majnemer at gmail.com> wrote: >> I have a few concerns: >> 1. GetTempPathW is buggy, we should be manually using >> GetEnvironmentVariableW with TMP, TEMP and USERPROFILE arguments and use the >> first that exists. >> 2. We