search for: knicks

Displaying 18 results from an estimated 18 matches for "knicks".

Did you mean: kicks
2012 Jul 09
4
[LLVMdev] Unable to do even basic Clang tutorial
Use the -I<install path>/include . This directory <install path>/include should look something like: clang/ clang-c/ llvm/ llvm-c/ HTH ashok On 7/9/2012 3:15 PM, NY Knicks Fan wrote: > I downloaded the 3.1 LLVM and Clang sources. > > I followed the directions at: http://clang.llvm.org/get_started.html > > I am able to use Clang to compile stuff, but I could already do that > with GCC. > > I'm trying to use Clang for parsing code, but I can...
2012 Jul 09
3
[LLVMdev] Unable to do even basic Clang tutorial
The "make install" should collect everything into your <install path>. The <install path> will then have bin, lib and include dirs. On 7/9/2012 3:52 PM, NY Knicks Fan wrote: > Hi Ashok, > > The documentation suggests that I put clang inside of llvm/tools and so > I have two separate include directories. I tried both of them and > neither worked: > > $ clang++ -I llvm/include tutorial1.cpp > In file included from tutorial1.cpp:5: >...
2012 Jul 10
2
[LLVMdev] Unable to do even basic Clang tutorial
...O_BUILD="X86" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="../bin" ../llvm > make install This builds and installs llvm+clang in the bin directory one level above llvm. I tried using configure earlier but had some problems. ashok On 7/9/2012 5:32 PM, NY Knicks Fan wrote: > 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! > > ---------------------------...
2012 Jul 10
3
[LLVMdev] Unable to do even basic Clang tutorial
Add -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS to your compilation flag. On 7/10/2012 11:23 AM, NY Knicks Fan wrote: > Hi Ashok, > > I created a new Ubuntu 12.04 virtual machine and followed directions > except that I know use your cmake command instead of configure, and I > got the error below. > > Any help is very much appreciated. > > > $ /home/ubuntu/bin/bin/clang++ -I...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
...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 . This directory <install path>/include shou...
2012 Jul 09
0
[LLVMdev] Unable to do even basic Clang tutorial
...<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/local (see: configure --help to verify). Chad > On 7/9/2012 3:52 PM, NY Knicks Fan wrote: >> Hi Ashok, >> >> The documentation suggests that I put clang inside of llvm/tools and so >> I have two separate include directories. I tried both of them and >> neither worked: >> >> $ clang++ -I llvm/include tutorial1.cpp >> In file i...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
...ier '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 incomplete wrt clang. I follow the instuctions for...
2012 Jul 09
0
[LLVMdev] Unable to do even basic Clang tutorial
...cpp:5:10: fatal error: 'llvm/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<install path>/include . This directory <install path>/include shou...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
...untedBaseIN5clang13DiagnosticIDsEE7ReleaseEv]+0x88): undefined reference to `clang::DiagnosticIDs::~DiagnosticIDs()' clang-3: error: linker command failed with exit code 1 (use -v to see invocation) ________________________________ 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 11:28 AM Subject: Re: [LLVMdev] Unable to do even basic Clang tutorial Add -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS to your compilation flag. On 7/...
2012 Jul 10
2
[LLVMdev] Unable to do even basic Clang tutorial
You will need to link to the LLVM/clang libraries. To get the correct flags, you can run: ./llvm-config --ldflags --libs and use the flags reported. On 7/10/2012 11:35 AM, NY Knicks Fan wrote: > OK. Thanks. I now get the following error (which appears to be a > problem w/ the tutorial itself?): > > $ /home/ubuntu/bin/bin/clang++ -I /home/ubuntu/bin/include/ > -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS > tutorial1.cpp/tmp/tutorial1-LQ71fW.o: In functio...
2012 Jul 09
3
[LLVMdev] Unable to do even basic Clang tutorial
On 7/9/2012 1:42 PM, Chad Rosier wrote: > Have you looked here: http://clang.llvm.org/get_started.html > > Chad > > > On Jul 9, 2012, at 11:33 AM, NY Knicks Fan wrote: > >> I'm trying to do the tutorials at: >> >> https://github.com/loarabia/Clang-tu...i/TutorialOrig >> <https://github.com/loarabia/Clang-tutorial/wiki/TutorialOrig> >> >> and I can't even do the first tutorial. I installed LLVM 3.1 an...
2012 Jul 10
2
[LLVMdev] Unable to do even basic Clang tutorial
You need to link in the libclang* as well. On 7/10/2012 1:22 PM, NY Knicks Fan wrote: > Hi Ashok, > > $ cd bin/bin > $ ./llvm-config --ldflags --libs > -L/home/ubuntu/bin/lib -ldl -lpthread > -lLLVMAsmParser -lLLVMTableGen -lLLVMDebugInfo -lLLVMX86Disassembler > -lLLVMX86AsmParser -lLLVMX86CodeGen -lLLVMSelectionDAG -lLLVMAsmPrinter > -lLLVMX86De...
2012 Jul 10
0
[LLVMdev] Unable to do even basic Clang tutorial
...ountedBaseIN5clang13DiagnosticIDsEE7ReleaseEv]+0x88): undefined reference to `clang::DiagnosticIDs::~DiagnosticIDs()' clang-3: error: linker command failed with exit code 1 (use -v to see invocation) ________________________________ 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:11 PM Subject: Re: [LLVMdev] Unable to do even basic Clang tutorial You will need to link to the LLVM/clang libraries. To get the correct flags, you c...
2012 Jul 09
0
[LLVMdev] Unable to do even basic Clang tutorial
...ying to use Clang for parsing code, but I can't even get started. Can you tell me how to "include the installed location of  clang/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 to do even basic Clang tutorial On 7/9/2012 1:42 PM, Chad Rosier wrote: &gt...
2012 Jul 09
0
[LLVMdev] Unable to do even basic Clang tutorial
Have you looked here: http://clang.llvm.org/get_started.html Chad On Jul 9, 2012, at 11:33 AM, NY Knicks Fan wrote: > I'm trying to do the tutorials at: > > https://github.com/loarabia/Clang-tu...i/TutorialOrig > > and I can't even do the first tutorial. I installed LLVM 3.1 and Clang 3.1 and when I do: > > ~/loarabia-Clang-tutorial-3d79443$ clang++ tutorial1.cpp In fi...
2012 Jul 09
2
[LLVMdev] Unable to do even basic Clang tutorial
I'm trying to do the tutorials at: https://github.com/loarabia/Clang-tu...i/TutorialOrig and I can't even do the first tutorial. I installed LLVM 3.1 and Clang 3.1 and when I do: ~/loarabia-Clang-tutorial-3d79443$ clang++ tutorial1.cpp In file included from tutorial1.cpp:5: In file included from ./llvm/Support/raw_ostream.h:17: ./llvm/Support/llvm/ADT/StringRef.h:13:10: fatal error:
2012 Jul 09
1
[LLVMdev] Unable to do even basic Clang tutorial
I'm trying to do the tutorials at: https://github.com/loarabia/Clang-tu...i/TutorialOrig and I can't even do the first tutorial. I installed LLVM 3.1 and Clang 3.1 and when I do: ~/loarabia-Clang-tutorial-3d79443$ clang++ tutorial1.cpp In file included from tutorial1.cpp:5: In file included from ./llvm/Support/raw_ostream.h:17: ./llvm/Support/llvm/ADT/StringRef.h:13:10: fatal error:
2004 Nov 09
1
Connection is up - but no packets are coming back...
All, I've set up tinc yesterday (Win32 -> Linux), the connection comes up but I can't reach a host behind the tinc "Server". Maybe I did something completely wrong, so let me first describe my network.... The "Server" has multiple Interfaces, be we just care for two of them here. One NIC "eth2" ist to the LAN (192.168.100.x/24) and the oher one is