Displaying 12 results from an estimated 12 matches for "foist".
Did you mean:
hoist
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 st...
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 just w...
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?
...k, it serves content via a Perl web server using a standard interface called PSGI. That Perl web server normally binds to localhost on a high-numbered TCP port, so we just stood Apache up in front of it as a reverse proxy. That avoids the security hassles of binding to TCP port 80, and it lets us foist the static content serving load off on Apache, so that the Perl layer serves only dynamic content.
There are many PSGI-aware web servers:
http://plackperl.org/#servers
The default used by Plack is HTTP::Server::Simple, which is probably fast enough for your purposes if CGI remains appropriat...
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
...the library. It's usually painless and simple - all the
details automatically handled. Since gfortran was installed, a number of
packages have failed to compile properly and weren't installed. I have
never had a problem installing R packages until very recently - I suspect
when gfortran was foisted on us unawares.
Before FC changed to gfortran, g77 was always used. All I want to do is to
make sure that if fortran code needs to be compiled, g77 will be used. I
don't think R knows anything about gfortran or g77 - it just uses what is
available on a given system - so this is something I n...
2017 Jun 03
0
more recent perl version?
...k, it serves content via a Perl web server using a standard interface called PSGI. That Perl web server normally binds to localhost on a high-numbered TCP port, so we just stood Apache up in front of it as a reverse proxy. That avoids the security hassles of binding to TCP port 80, and it lets us foist the static content serving load off on Apache, so that the Perl layer serves only dynamic content.
>
> There are many PSGI-aware web servers:
>
> http://plackperl.org/#servers
>
> The default used by Plack is HTTP::Server::Simple, which is probably fast enough for your purpose...
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