Displaying 20 results from an estimated 54 matches for "virgils".
Did you mean:
virgile
2013 Aug 29
3
[LLVMdev] COFF.h and windows.h conflict
It was happening in a few files using COFF.h in LLDB for the windows branch
(Windows.h is required for some typedef over Mutex, thread, socket, etc...).
As said before, I am currently checking if it could be avoided (probably
some refactoring will be needed). However I was wondering if it might not
be easier to just avoid this clash at all by avoiding it in LLVM.
Alternatively I could #undef
2013 Aug 29
2
[LLVMdev] COFF.h and windows.h conflict
Right now, we have:
In COFF.h:
class COFF { enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0,
... }; };
In windows.h:
#define IMAGE_FILE_MACHINE_UNKNOWN 0
* If you first include COFF.h and then windows.h,
COFF::IMAGE_FILE_MACHINE_UNKNOWN
will be preprocessed into
COFF:0.
* If you first include Windows.h and then COFF.h, COFF.h won't work because
it's enum will
2013 Aug 29
0
[LLVMdev] COFF.h and windows.h conflict
On Aug 28, 2013, at 7:05 PM, Virgile Bello <virgile.bello at gmail.com> wrote:
> Right now, we have:
> In COFF.h:
> class COFF { enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, ... }; };
> In windows.h:
> #define IMAGE_FILE_MACHINE_UNKNOWN 0
>
> * If you first include COFF.h and then windows.h,
> COFF::IMAGE_FILE_MACHINE_UNKNOWN
> will be
2013 Aug 29
0
[LLVMdev] COFF.h and windows.h conflict
In the Windows SDK headers, is the IMAGE_* defines in a separate file (e.g. winint.h)? Does the file have a guard against multiple inclusion? If so (and the guard was named _WINNT_H_), perhaps you can do something like:
#define _WINNT_H_
#include <windows.h>
So you would get everything except those file format defines. Of course, this would fail if other parts of the windows header rely
2013 Aug 29
1
[LLVMdev] COFF.h and windows.h conflict
The odds of #define _WINNT_H working are incredibly slim :)
You can't include the separate headers (winbase.h etc), you have to just
include windows.h
Windows defines IMAGE_* whether we like it or not, we can't stop it
doing it, so the only reasonable solution is to change LLVM to have it's
own set of constant names.
Nick Kledzik wrote:
> In the Windows SDK headers, is the
2013 Aug 28
2
[LLVMdev] COFF.h and windows.h conflict
Yes of course I understand it was done on purpose.
It's just that it makes it impossible to include COFF.h and Windows.h side
by side (which probably wasn't necessary until now).
On Wed, Aug 28, 2013 at 9:52 AM, Reid Kleckner <rnk at google.com> wrote:
> IMO the fact that it uses the standard names from the COFF documentation
> is a feature, not a bug.
>
> The elf and
2013 Aug 28
3
[LLVMdev] COFF.h and windows.h conflict
Hello,
I noticed that if include\llvm\Support is included alongside Windows.h,
there will be many define conflict leading to compilation errors, such as:
COFF.h (enum): enum MachineTypes { IMAGE_FILE_MACHINE_UNKNOWN = 0x0, ...
};
and
winnt.h (same but define): #define IMAGE_FILE_MACHINE_UNKNOWN 0
Of course I could try to avoid to include both (but it's rather difficult
and would require
2013 Aug 28
0
[LLVMdev] COFF.h and windows.h conflict
IMO the fact that it uses the standard names from the COFF documentation is
a feature, not a bug.
The elf and macho headers in the same directory use the standard
enumeration names, correct?
On Tue, Aug 27, 2013 at 5:41 PM, Virgile Bello <virgile.bello at gmail.com>wrote:
> Hello,
>
> I noticed that if include\llvm\Support is included alongside Windows.h,
> there will be many
2013 Aug 28
0
[LLVMdev] COFF.h and windows.h conflict
On Aug 27, 2013, at 5:56 PM, Virgile Bello <virgile.bello at gmail.com> wrote:
> Yes of course I understand it was done on purpose.
> It's just that it makes it impossible to include COFF.h and Windows.h side by side (which probably wasn't necessary until now).
I too am in the camp that it is a feature to use the standard names. For instance doing a search it google or
2004 Oct 07
1
Menu examples?
Hi all,
I'm looking for some menu examples for Murali's menu system.
Specifically, a headstart on creating a Kickstart menu which covers the
most common options with the intention of creating this:
label ks.menu
kernel vmlinuz.ks.$DIST
append ksdevice=eth0
ks=http://kickstartserver/$DIST/Custom/ks.cfg.$DIST
initrd=initrd.ks.$DIST lang= devfs=nomount ramdisk_size=8192
Hmm...looking
2012 Nov 20
5
Using if
Dear R users,
As a new comer to R, I would like to create a new variable using if
statements but don't know how to do it. Basically, I have two variables
(EvHint and MinTex). I want to create a third variable called RiskTest.
In SPSS, my syntax would look like
Compute RiskTest=0.
if (EvHint=1 & MinTex=1) RiskTest=1.
Question: How do I do this with R?
My Data
EvHint<-c(0, 0, 0, 1,
2014 Dec 31
3
[LLVMdev] First class aggregates of small size: split when used in function call
Hello,
In my LLVM frontend (CLR/MSIL), I am currently using first-class aggregates
to represent loaded value types on the "CLR stack".
However, I noticed that when calling external method taking those aggregate
by value, they were not passed as I expected:
%COLORREF = type { i8, i8, i8, i8 }
declare i32 @SetLayeredWindowAttributes(i8*, %COLORREF, i8, i32)
I call this function with
2004 Feb 26
3
Collapsing Categorical Variables
Hi,
Suppose I have a categorical variable called STREET, and I have 30
levels for it (i.e. 30 different streets). I want to find all those
streets with only 15 observations or below then collapse them into a
level called OTHER. Is there a quick way, other than using a for()
loop, to do it? Currently what I'm doing is something like:
### Collapse STREET (those < 15)
st <- c()
2002 Jul 25
3
Platforms with MSB (Most Significant Byte)
Hi,
I asked some days ago how to guess the o.s. the machine is running. I
found that it is stored in a variable called R_PLATFORM. Now I need a
full list of all the values this variable can have because I need to set
an option depending on the endianness of the platform in which we are
compiling the package.
Anyone can help me? Thanks,
Virgilio Gómez Rubio
Dpto. Estadística e
2002 Dec 04
0
RArcInfo 0.4-2 and tutorial (draft) available
Hi,
A new release of RArcInfo is avaialable from CRAN and
http://matheron.uv.es/~virgil/Rpackages/RArcInfo/
The changes made are:
*V 0.4-2
- 'index' argument added to plotarc to select the arcs to plot.
- 'index' argument added to plotpal to select the polygons to plot.
- New function 'get.nb', which, given a set of polygons, returns
the neighbouring polygons of
2002 Dec 04
0
RArcInfo 0.4-2 and draft tutorial out
Hi,
A new release of RArcInfo is out, together with a draft of the tutorial.
You can get both from
http://matheron.estadi.uv.es/~virgil/Rpackages/RArcInfo
Windows binaries are also available and package source can also be
downloaded from CRAN.
I 'd like to encourage users of the package to read the tutorial and
report ideas. Besides, I would like to keep a web page on works where
RArcInfo is
2003 Oct 13
1
Pre-release of package DCluster available
Hi,
I have just put the source code (and a zip file for Window$ users) of
package DCluster in my website:
http://matheron.estadi.uv.es/~virgil/Rpackages/DCluster/
DCluster is a package that contains routines for the detection of
spatial clusters of diseases (Openshaw's GAM, Besag and Newell,
Kulldorff and Nagarwalla, Stone's Test and others).
A full description can be found here:
2003 Oct 15
1
Windows binaries for DCluster updated
Hi,
As Frank M. Howell noticed (and probably other users), the Windows
binaries for DCluster I put in my web page are not working... I have
compiled the source code
again and know it does. Please, download it again, and sorry for the
inconvenience.
The URL is http://matheron.uv.es/~virgil/Rpackages/DCluster
DCluster is a package that implements some methods for the detection of
spatial
2011 Jan 06
1
Dovecot 2.0.7 doesn't disassociate STDERR when it daemonizes.
At least it appears that way on my FreeBSD 8.1 system. This is probably
unnoticeable in regular use but I happen to use CFengine(v2) for system
configuration & monitoring. If it notices dovecot not running it tries
to start it and hangs.
I believe cfengine (cfagent) has created a pipe to monitor the start
commmand's stderr and is waiting for this pipe to close. This never
happens
2014 Nov 29
3
[LLVMdev] Frontend: How to use Member to Function Pointer as callbacks
Hello,
As part of a MSIL (i.e. C#) to LLVM frontend I am currently working on (
https://github.com/xen2/SharpLang ), I would need some help/hint about how
to properly design "PInvoke callbacks".
Through "PInvoke" mechanism .NET allows you to call C functions, i.e.:
C#:
[DllImport("libc.so")] extern void mempcy(void* dest, void* src, int size);
// declaration of C