search for: foists

Displaying 12 results from an estimated 12 matches for "foists".

Did you mean: hoists
2013 Oct 14
1
[LLVMdev] [Debug Info + LTO] Type Uniquing for C types?
...tion > post-link smaller then just using the type hashing machinery for > structs will be sufficient. However, if it's to save space during an > LTO link then we'll want to do it in the front end. > > Doug: Have a link for how you do the C type merging for modules? Modules foists the C++ one definition rule on C/Objective-C so that it can avoid performing type merging, so we can’t look there. C doesn’t have a one definition rule per se. The cross-translation-unit compatibility rules are in 6.2.7 of the C standard, which boils down to structural equality: Moreover, two str...
2012 Oct 02
0
[LLVMdev] JIT and libgcc_s.so
Hi Eric, This makes total sense, thanks. One thing though; it seems a lot of functionality is being foisted onto the client. This is all well and good, but it seems that clients are expected to reinvent the wheel quite a bit for no real purpose - an example is the implementation of getPointerToNamedFunction, allocate{Code,Data}Section and invalidateInstructionCache in lli.cpp. Many clients will
2012 Oct 01
2
[LLVMdev] JIT and libgcc_s.so
So this is likely just an accident rather than on purpose. There's totally room for that to happen, but it'll be the job of the client and not MCJIT itself. Basically whomever should call dlopen if they want to and it's the problem of the client application (which could be lli as the canonical mcjit example) to link in the correct bits. Make sense? If you can see a use case in
2017 Jun 02
2
more recent perl version?
On Jun 2, 2017, at 5:05 AM, hw <hw at gc-24.de> wrote: > > Warren Young wrote: >> >> There are various options. We use mod_fcgid + Plack here. > I need to look into that when I have time. I wonder if it wouldn?t have been faster to just backport the app to Perl 5.16? How hard could it be? It?s not like Perl 5.16 is a hopelessly lame and incapable language. The
2010 Jan 09
1
Zbrush on wine is not starting
Hi! I've installed the newest wine on my fedora (by yum install wine) And I've installed Zbrush 3.5 r3 on it. when I'm trying to execute: wine "c:\programy\zbrush35r3\zbrush.exe" I'm getting: Trying to load PE image for unsupported architecture (I386) Trying to load PE image for unsupported architecture (I386) What should I do? are there any versions of wine? my yum
2005 Aug 13
1
g77 and R
> rab45+ at pitt.edu wrote: >> Jerry, >> >> Here are the two R packages. >> >> Thanks. >> >> Rick > All the fortran codes compile OK so the problem is invoking the compiler > you > want. One approach which is a work around is to rename the gfortran > executable > to somthing else like gfortran-save and create a link called gfortran that
2017 Jun 03
0
more recent perl version?
Warren Young wrote: > On Jun 2, 2017, at 5:05 AM, hw <hw at gc-24.de> wrote: >> >> Warren Young wrote: >>> >>> There are various options. We use mod_fcgid + Plack here. >> I need to look into that when I have time. > > I wonder if it wouldn?t have been faster to just backport the app to Perl 5.16? How hard could it be? It?s not like Perl 5.16
2013 Oct 11
0
[LLVMdev] [Debug Info + LTO] Type Uniquing for C types?
> > Since we don't have ODR, we may have macros defined differently for a struct > in a .h file, > thus having two versions of the struct from two different CU. It seems that > we can't assume > structs with the same name and defined in the same file/line/column are the > same. > Ah right sorry, I remember this. Also, macros are evil, just ask the modules guys :)
2017 May 24
3
more recent perl version?
On May 24, 2017, at 9:38 AM, hw <hw at gc-24.de> wrote: > > Warren Young schrieb: >> On May 24, 2017, at 7:05 AM, hw <hw at gc-24.de> wrote: >>> apache uses mod_perl >> >> mod_perl was dropped from Apache in 2.4, and Red Hat followed suit with RHEL 7. > > What is it using instead? There are various options. We use mod_fcgid + Plack here. And
2010 Feb 05
3
open script file from command line
Hi all, Is there a function to open a script file from the command line? I have several students who are Mac users and when they open up a script file it does not send commands to the console, and unfortunately I don't know how to solve this problem since I am not a Mac user. I have looked over the FAQ for Mac users, but didn't see a reference to the problem. I think they are both
2004 Aug 05
6
Dovecot Local Delivery Agent
Hi I noticed in a post that Timo might start work on a LDA Great! If so, here is something I would really like included. Support for PAM There is quite a lengthy reason behind this. In my organisation, user accounts are created on ldap. It is up to the services to create home directories whenever the user first uses them. For instance, Samba will do this the first time they connect to their
2013 Oct 11
3
[LLVMdev] [Debug Info + LTO] Type Uniquing for C types?
On Fri, Oct 11, 2013 at 11:48 AM, Eric Christopher <echristo at gmail.com>wrote: > > With C++'s ODR, we are able to unique C++ types by using type > identifiers to > > refer to types. > > Type identifiers are generated by C++ mangler. What about languages > without > > ODR? Should we unique C types as well? > > > > We can, but the identifier