search for: nalkund

Displaying 20 results from an estimated 60 matches for "nalkund".

2013 Jan 21
4
[LLVMdev] Embed LLVM/Clang in our project
On 1/21/2013 2:01 AM, Óscar Fuentes wrote: > Ashok Nalkund <ashoknn at qti.qualcomm.com> writes: > >> I was using the find_package(LLVM llvm/share/llvm/cmake) and >> llvm_map_components_to_libraries(REQ_LLVM_LIBRARIES jit native) to get >> the libraries to link against. This works well for the libLLVM* >> libraries, but how...
2012 May 22
5
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
Resending :(. Any pointers? tia On 5/21/2012 2:46 PM, Ashok Nalkund wrote: > On 5/21/2012 11:15 AM, Nick Lewycky wrote: >> Ashok Nalkund wrote: >>> Resending, any pointers? I demangled the symbol and it turns out to be: >>> std::__1::locale::use_facet(std::__1::locale::id&) const >> >> My guess is that you've got a .bc...
2012 May 23
0
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
Ashok Nalkund wrote: > > Resending :(. Any pointers? Fundamentally the issue is that the system linker is supposed to define __dso_handle when linking, but since there is no system linker between your build of the .bc files and running lli, nobody has defined it. It seems reasonable to me that lli shou...
2013 Jan 22
0
[LLVMdev] Embed LLVM/Clang in our project
...a problem in practice. - Daniel On Jan 22, 2013, at 0:02, Duncan Sands <baldrick at free.fr> wrote: > I would have expected the .pyc files to go in the objects directory. Maybe > Daniel knows why that's not happening. > > Ciao, Duncan. > > On 22/01/13 00:48, Ashok Nalkund wrote: >> On 1/21/2013 10:25 AM, Ashok Nalkund wrote: >>> On 1/21/2013 2:01 AM, Óscar Fuentes wrote: >>>> Ashok Nalkund <ashoknn at qti.qualcomm.com> writes: >>>> >>>>> I was using the find_package(LLVM llvm/share/llvm/cmake) and >>&...
2013 Jan 21
0
[LLVMdev] Embed LLVM/Clang in our project
On 1/21/2013 10:25 AM, Ashok Nalkund wrote: > On 1/21/2013 2:01 AM, Óscar Fuentes wrote: >> Ashok Nalkund <ashoknn at qti.qualcomm.com> writes: >> >>> I was using the find_package(LLVM llvm/share/llvm/cmake) and >>> llvm_map_components_to_libraries(REQ_LLVM_LIBRARIES jit native) to get >>&g...
2012 Jul 09
3
[LLVMdev] Unable to do even basic Clang tutorial
.../Support/raw_ostream.h' file not found > #include "llvm/Support/raw_ostream.h" > ^ > 1 error generated. > > Any help you can provide is very much appreciated. > > ------------------------------------------------------------------------ > *From:* Ashok Nalkund <ashoknn at qualcomm.com> > *To:* NY Knicks Fan <nyknicksfan92009 at yahoo.com>; "llvmdev at cs.uiuc.edu" > <llvmdev at cs.uiuc.edu> > *Sent:* Monday, July 9, 2012 3:30 PM > *Subject:* Re: [LLVMdev] Unable to do even basic Clang tutorial > > Use the -I&...
2012 May 21
2
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
Ashok Nalkund wrote: > Resending, any pointers? I demangled the symbol and it turns out to be: > std::__1::locale::use_facet(std::__1::locale::id&) const My guess is that you've got a .bc file produced on a mac using libc++ (hence the ::_1 part) and you're trying to run it on linux with libs...
2012 Jun 21
4
[LLVMdev] [cfe-dev] is configure+make dead yet?
On 6/20/2012 11:55 PM, Ashok Nalkund wrote: > On 6/20/2012 11:00 PM, "C. Bergström" wrote: >> On 06/21/12 12:47 PM, Chandler Carruth wrote: >>> On Wed, Jun 20, 2012 at 5:13 PM, Nick Lewycky <nlewycky at google.com >>> <mailto:nlewycky at google.com>> wrote: >>> >>>...
2012 Jul 09
0
[LLVMdev] Unable to do even basic Clang tutorial
On Jul 9, 2012, at 4:00 PM, Ashok Nalkund wrote: > The "make install" should collect everything into your <install path>. > The <install path> will then have bin, lib and include dirs. And you should be able to specify the install path with the --prefix option when configuring. I believe the default is /usr/...
2012 May 22
0
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
> Resending :(. Any pointers? Are you seeing missing __dso_handle with the interpreter or with the JIT? Ciao, Duncan. > > tia > > On 5/21/2012 2:46 PM, Ashok Nalkund wrote: >> On 5/21/2012 11:15 AM, Nick Lewycky wrote: >>> Ashok Nalkund wrote: >>>> Resending, any pointers? I demangled the symbol and it turns out to be: >>>> std::__1::locale::use_facet(std::__1::locale::id&) const >>> >>> My guess is t...
2012 Jul 09
4
[LLVMdev] Unable to do even basic Clang tutorial
...ode, but I can't even get started. > > Can you tell me how to "include the installed location ofclang/llvm > headers directories in your include path"? > > Thanks! > > > ------------------------------------------------------------------------ > *From:* Ashok Nalkund <ashoknn at qualcomm.com> > *To:* NY Knicks Fan <nyknicksfan92009 at yahoo.com> > *Cc:* Chad Rosier <mcrosier at apple.com>; "llvmdev at cs.uiuc.edu" > <llvmdev at cs.uiuc.edu> > *Sent:* Monday, July 9, 2012 2:39 PM > *Subject:* Re: [LLVMdev] Unable...
2012 May 23
1
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
...; untested though; we might need to give dummy_dso_handle a real value. this is already done in JIT.cpp, search for HAVE___DSO_HANDLE. Probably the interpreter and MCJIT just need to get the same logic. Ciao, Duncan. > > Nick > >> tia >> >> On 5/21/2012 2:46 PM, Ashok Nalkund wrote: >>> On 5/21/2012 11:15 AM, Nick Lewycky wrote: >>>> Ashok Nalkund wrote: >>>>> Resending, any pointers? I demangled the symbol and it turns out to be: >>>>> std::__1::locale::use_facet(std::__1::locale::id&) const >>>> >&g...
2012 Jul 10
2
[LLVMdev] Unable to do even basic Clang tutorial
...e-mail, my /usr/local/include does not have > clang/ or clang-c/. > > I'm unable to do a make or make install in the Clang build directory. > How do I fix this? > > Thanks! > > ------------------------------------------------------------------------ > *From:* Ashok Nalkund <ashoknn at qualcomm.com> > *To:* NY Knicks Fan <nyknicksfan92009 at yahoo.com>; "llvmdev at cs.uiuc.edu" > <llvmdev at cs.uiuc.edu> > *Sent:* Monday, July 9, 2012 3:30 PM > *Subject:* Re: [LLVMdev] Unable to do even basic Clang tutorial > > Use the -I&...
2012 May 21
0
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
On 5/21/2012 11:15 AM, Nick Lewycky wrote: > Ashok Nalkund wrote: >> Resending, any pointers? I demangled the symbol and it turns out to be: >> std::__1::locale::use_facet(std::__1::locale::id&) const > > My guess is that you've got a .bc file produced on a mac using libc++ > (hence the ::_1 part) and you're trying to run i...
2013 Jan 21
2
[LLVMdev] Embed LLVM/Clang in our project
On 1/19/2013 2:39 AM, Óscar Fuentes wrote: > Ashok Nalkund <ashoknn at qti.qualcomm.com> writes: > >> We want to compile LLVM/Clang and use the resulting >> headers/libraries in our project. But we compile it during out build >> process. I can build LLVM/Clang by adding it to our cmakelists.txt but >> when our code tries...
2012 Jun 21
0
[LLVMdev] [cfe-dev] is configure+make dead yet?
On Thu, Jun 21, 2012 at 12:50 AM, Ashok Nalkund <ashoknn at qualcomm.com> wrote: > On 6/20/2012 11:55 PM, Ashok Nalkund wrote: >> On 6/20/2012 11:00 PM, "C. Bergström" wrote: >>> On 06/21/12 12:47 PM, Chandler Carruth wrote: >>>> On Wed, Jun 20, 2012 at 5:13 PM, Nick Lewycky <nlewycky at google.co...
2012 May 21
0
[LLVMdev] lli unable to resolve symbol _ZNKSt3__16locale9use_facetERNS0_2idE in bitcode
Resending, any pointers? I demangled the symbol and it turns out to be: std::__1::locale::use_facet(std::__1::locale::id&) const tia, ashok On 5/19/2012 9:41 PM, Ashok Nalkund wrote: > Hi, > LLVM/Clang version: 3.2svn (r156975). I have a bitcode file that I'm > trying to load/execute using lli as below but it reports an error about > unresolved symbol: >> LLVM ERROR: Program used external function '_ZNKSt3__16locale9use_facetERNS0_2idE'...
2012 Jul 10
3
[LLVMdev] Unable to do even basic Clang tutorial
...return N >= 64 || (-(INT64_C(1)<<(N-1)) <= x && x < (INT64_C(1)<<(N-1))); > ^ > 7 errors generated. > > > ------------------------------------------------------------------------ > *From:* Ashok Nalkund <ashoknn at qualcomm.com> > *To:* NY Knicks Fan <nyknicksfan92009 at yahoo.com> > *Cc:* "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> > *Sent:* Tuesday, July 10, 2012 12:44 AM > *Subject:* Re: [LLVMdev] Unable to do even basic Clang tutorial > > Loo...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
Hi Ashok, As I mentioned in my earlier e-mail, my /usr/local/include does not have clang/ or clang-c/. I'm unable to do a make or make install in the Clang build directory.  How do I fix this? Thanks! ________________________________ From: Ashok Nalkund <ashoknn at qualcomm.com> To: NY Knicks Fan <nyknicksfan92009 at yahoo.com>; "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Monday, July 9, 2012 3:30 PM Subject: Re: [LLVMdev] Unable to do even basic Clang tutorial Use the -I<install path>/include . Th...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
...xtras.h:96:56: error: use of undeclared identifier 'INT64_C'   return N >= 64 || (-(INT64_C(1)<<(N-1)) <= x && x < (INT64_C(1)<<(N-1)));                                                        ^ 7 errors generated. ________________________________ From: Ashok Nalkund <ashoknn at qualcomm.com> To: NY Knicks Fan <nyknicksfan92009 at yahoo.com> Cc: "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu> Sent: Tuesday, July 10, 2012 12:44 AM Subject: Re: [LLVMdev] Unable to do even basic Clang tutorial Looks like your make/install is incom...