Displaying 20 results from an estimated 700 matches similar to: "draw a circle with a gradient fill"
2010 Mar 06
2
[LLVMdev] Cygwin patches for 2.7
On 6 March 2010 10:47, Eric Christopher <echristo at apple.com> wrote:
>
> On Mar 6, 2010, at 2:44 AM, Aaron Gray wrote:
>
> >
> > clang fails with a dynamic linking problem.
>
> What's the problem? and if you would please file a bug that would be
> awesome :)
>
> thanks!
>
> Eric,
Neither Cygwin nor MinGW support Dynamic Linking. I am getting
2016 Oct 21
4
llvm build failed on Fedora 24
Hi,
I'm try to build llvm on my PC but it failed. I'm using following command,
$ cmake -G "Ninja" ../llvm -DCMAKE_INSTALL_PREFIX=prefix=$INSTALL_PATH
-DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=On
$ ninja-build -j 2
I have skipped libcxx and libcxxabi package.
It shows below error,
00:04:23 [3261/3430] Building CXX object
2009 Oct 16
2
using a custom color sequence for image()
Hi, I'd like to use a custom color sequence (black - low values, green -
high values) in am image() plot. While I can specify colors (say a sequence
of grays) to the col argument, the ordering is getting messed up. I have two
questions:
1. How can I get a sequence of say 256 colors starting from black and ending
in green?
2. How is this specified to image() such that it uses the colors in
2010 Mar 06
1
[LLVMdev] Cygwin patches for 2.7
On 5 March 2010 22:09, Aaron Gray <aaronngray.lists at googlemail.com> wrote:
> Thanks Chris. Built LLVM okay from SVN and am running 'make check' and
> building LLVM-GCC, also will check whether clang builds on Cygwin too.
>
LLVM-GGC builds and installs okay using gcc-4.2.4 minimum. 'make check' runs
okay too.
clang fails with a dynamic linking problem.
Aaron
2010 Mar 06
0
[LLVMdev] Cygwin patches for 2.7
On Mar 6, 2010, at 2:44 AM, Aaron Gray wrote:
>
> clang fails with a dynamic linking problem.
What's the problem? and if you would please file a bug that would be awesome :)
thanks!
-eric
2010 Mar 06
2
[LLVMdev] Cygwin patches for 2.7
On Mar 6, 2010, at 3:49 AM, Aaron Gray wrote:
>
> I am hoping I can just not build the indexer and will see if I can get a patch together first for 2.7 before submitting a bug report if I have to.
>
> Okay here's a patch to no build the CIndexer on Cygwin and MinGW :-
>
> Index: tools/Makefile
> ===================================================================
>
2012 Jun 24
2
[LLVMdev] [PATCH] cindex.py using find_library
Hello all,
Is there a reason why the library location code in cindex py does not use
find_library() to locate libclang, like in the attached patch?
Without it there were problems locating a versioned libclang.so.1 file on
Debian, for example.
Cheers,
Mihai
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2003 Nov 27
1
cclust - cindex - binary data
Hi,
I'm trying to debug a function I wrote to calculate the cindex for a
hierarchical tree.
For this it is useful to compare my calculations with those in output from
the clustindex function, in the cclust library.
There's no way, however, to have the cindex value for a given output of the
cclust function, as a NA value is always returned.
This happens almost surely because the cindex in
2010 Mar 06
0
[LLVMdev] Cygwin patches for 2.7
On 6 March 2010 19:12, Chris Lattner <clattner at apple.com> wrote:
> On Mar 6, 2010, at 3:49 AM, Aaron Gray wrote:
>
>
>> I am hoping I can just not build the indexer and will see if I can get a
>> patch together first for 2.7 before submitting a bug report if I have to.
>>
>
> Okay here's a patch to no build the CIndexer on Cygwin and MinGW :-
>
2010 Mar 06
0
[LLVMdev] Cygwin patches for 2.7
On 6 March 2010 11:16, Aaron Gray <aaronngray.lists at googlemail.com> wrote:
> On 6 March 2010 10:47, Eric Christopher <echristo at apple.com> wrote:
>
>>
>> On Mar 6, 2010, at 2:44 AM, Aaron Gray wrote:
>>
>> >
>> > clang fails with a dynamic linking problem.
>>
>> What's the problem? and if you would please file a bug that
2012 Jun 25
0
[LLVMdev] [PATCH] cindex.py using find_library
On 06/25/2012 12:50 AM, Mihai Basa wrote:
> Hello all,
>
> Is there a reason why the library location code in cindex py does not
> use find_library() to locate libclang, like in the attached patch?
>
> Without it there were problems locating a versioned libclang.so.1 file
> on Debian, for example.
Hi Mihai,
as this is a clang related question, I move your mail to the clang
2016 May 08
2
typedef not present in the python AST
Hello,
I'm trying to use the python libclang bindings to write a C++
style-checker, and I'd like to detect all the typedefs to recommend
switching to using. I'm using libclang 3.8, with the python bindings
provided with it.
When I parse a file with
index = clang.cindex.Index.create()
tu = index.parse(f, ['-x', 'c++', '-std=c++11', '-fsyntax-only',
2013 Nov 12
1
syslinux ansi <-> vesa color mapping
I have noticed anything using ANSI escape sequences to color text does not work
if syslinux is in VESA mode. It only works if the \1#, \2#, or \3# are used.
This means that libmenu which relies on csprint fails to render colors in
VESA mode. I noticed the default color table has a complete table generated at
runtime for all VGA color combinations, which csprint also does but from VGA
attributes on
2013 Oct 19
2
[LLVMdev] Parsing C++ headers with Clang bindings for Python
I'd like to parse a C++ header file (say, math.h) with the Clang bindings
for Python. (Yes, I know math.h is technically a C header, but for my
purposes I want to pretend that it is C++.) For some reason, Clang is able
to parse the file as C, but not as C++.
Here is an example session:
>>> import clang.cindex
>>> idx = clang.cindex.Index.create()
>>> tu =
2009 Oct 05
2
[LLVMdev] Hi, everyone, fail on building c-index-test
Is there anyone get the time to apply this patch?
2009/10/2, Douglas Gregor <dgregor at apple.com>:
>
> On Oct 1, 2009, at 6:36 AM, 罗勇刚(Yonggang Luo) wrote:
>
>> At the first glance, it's coming with that c-index-test is just
>> only containing c files (without cpp(cxx,c++) files).
>>
>> So cmake recognize it as pure C project,
>> and so it's
2013 Oct 20
1
[LLVMdev] Parsing C++ headers with Clang bindings for Python
Hi Elliott,
On Oct 18, 2013, at 9:29 PM, Elliott Slaughter <elliottslaughter at gmail.com> wrote:
> Answering my own question:
>
> On Fri, Oct 18, 2013 at 8:51 PM, Elliott Slaughter <elliottslaughter at gmail.com> wrote:
> I'd like to parse a C++ header file (say, math.h) with the Clang bindings for Python. (Yes, I know math.h is technically a C header, but for my
2013 Oct 19
0
[LLVMdev] Parsing C++ headers with Clang bindings for Python
Answering my own question:
On Fri, Oct 18, 2013 at 8:51 PM, Elliott Slaughter <
elliottslaughter at gmail.com> wrote:
> I'd like to parse a C++ header file (say, math.h) with the Clang bindings
> for Python. (Yes, I know math.h is technically a C header, but for my
> purposes I want to pretend that it is C++.) For some reason, Clang is able
> to parse the file as C, but not
2008 May 09
2
How can one make stepAIC and lme
Dear R-help
I'm working on a large dataset which I have divided into 20 subsets based on similar features. Each subset consists of observations from different locations and I wish to use the location as a random effect.
For each group I want to select regressors by a stepwise procedure and include a random effect on the intercept. I use stepAIC() and lme(). (The lmer()-function doesn't
2012 Mar 16
0
[LLVMdev] Python bindings in tree
Hello,
Am Donnerstag, 15. März 2012, 21:15:02 schrieb Gregory Szorc:
> There was some talk on IRC last week about desire for Python bindings to
> LLVM's Object.h C interface. So, I coded up some and you can now find
> some Python bindings in trunk at bindings/python. Currently, the
> interfaces for Object.h and Disassembler.h are implemented.
FYI:
I recently startet working on
2012 Sep 13
1
[LLVMdev] Parsing C++ template parameters using cindex.py
Hi,
I am parsing a C++ file using cindex.py and want to get the template
parameters to a specific node. However, the tree seems to be different
depending on if the template parameter is a struct/class or a simple
type such as int or float. In the first case the template type is
appended as a child to the VAR_DECL node (the TYPE_REF node seen in
the example below), but this is not the case with