similar to: wine-pthread: failed to read ELF header ?

Displaying 20 results from an estimated 10000 matches similar to: "wine-pthread: failed to read ELF header ?"

2005 Sep 07
1
Big thanks for wine team
I don't know what do you (devels) fixed (maybe that what i read in WWN 287), but alsa works NICE on my system. So, I step in here to wish you luck with the project. I'm deeply impressed that this works :P -- Pawe? R??a?ski
2003 Dec 23
0
[LLVMdev] pthread?
Try llvmgcc pthread.c -o pthread.ll -pthread You have to link in the pthreads library, and I believe -pthread is all you need on a redhat 9 box. Kevin > -----Original Message----- > From: llvmdev-admin at cs.uiuc.edu [mailto:llvmdev-admin at cs.uiuc.edu] On > Behalf Of yue > Sent: Tuesday, December 23, 2003 11:43 PM > To: llvmdev at cs.uiuc.edu > Subject: [LLVMdev] pthread?
2003 Dec 24
0
[LLVMdev] Re: pthread?
I try to run lli with "--load=/lib/libpthread.so", but it shows: --------------------------------------------------- [yue at RH9 test]$ ./pthread.ll Error opening '/lib/libpthread.so.0': /lib/libpthread.so.0: symbol _errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference -load request ignored. Creating thread 0 WARNING: Cannot resolve fn
2003 Dec 24
1
[LLVMdev] Re: pthread?
On Wed, 24 Dec 2003, yue wrote: > I try to run lli with "--load=/lib/libpthread.so", but it shows: > --------------------------------------------------- > [yue at RH9 test]$ ./pthread.ll > Error opening '/lib/libpthread.so.0': /lib/libpthread.so.0: symbol > _errno, version GLIBC_2.0 not defined in file libc.so.6 with link time > reference > -load request
2003 Dec 23
4
[LLVMdev] pthread?
hi, I compile a pthread program using llvmgcc, but when i run pthread.ll, it show: ------------------ [yue at RH9 test]$ llvmgcc pthread.c -o pthread.ll [yue at RH9 test]$ ls pthread pthread.c pthread.ll pthread.ll.bc [yue at RH9 test]$ ./pthread.ll Creating thread 0 WARNING: Cannot resolve fn 'pthread_create' using a dummy noop function instead! ERROR; return code from
2008 May 22
0
[PATCH] stubdom: fix and clean pthread minimal support
stubdom: fix and clean pthread minimal support Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com> diff -r f4a293cbec1b extras/mini-os/include/posix/pthread.h --- a/extras/mini-os/include/posix/pthread.h Thu May 22 14:28:40 2008 +0100 +++ b/extras/mini-os/include/posix/pthread.h Thu May 22 16:08:29 2008 +0100 @@ -1,18 +1,56 @@ #ifndef _POSIX_PTHREAD_H #define _POSIX_PTHREAD_H
2009 May 14
1
Re: No wine-pthread in 1.1.19 ?
James Mckenzie wrote: > wine-pthread was removed from this version forward. pthread is not supported by modern Linux kernels and the Mach-O system. Eh? You mean other way around? P-Threads (POSIX threads) are the default threading model on most *NIX now days. "wine-pthread" was removed indeed as it's now integrated into loader as the only remaining option.
2008 May 16
2
Where is wine-pthread in 1.0 rc1 ??
Hi, i'm a wine user since years now and recently I began to use GLC, a capture soft wich can work with wine BUT this soft need wine-pthread to capture wine windows !! wine-pthread was a mandatory file in any wine version as far as I can remember, but it simply disappear in wine 1.0 rc1 package (using ubuntu hardy repository since Debian one is quite outdated if you compare them) So is it a
2017 Mar 14
0
[ANNOUNCE] pthread-stubs 0.4
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hi, pthread-stubs 0.4 is now available. This new release stops providing stubs, but instead expects libc to do so. On platforms where this is not the case, "-pthread" is injected via our pkg-config file instead. This was done to make loading libpthread (indirectly) via dlopen() work correctly in the presence of pthread-stubs. Download:
2009 Apr 13
5
No wine-pthread in 1.1.19 ?
I'm on Opensuse 11.0, just installed Wine 1.1.19 and there's no wine-pthread binary. So i downloaded sources, compiled and again no wine-pthread. What should I do to get this file? Is multithreading dropped in Wine now?
2002 Feb 22
1
c-c problem when R compiled with pthread
Dear R-devel, I've run into this problem that when I hit c-c to interrupt a command or computation, the R session just ends. The info: R-1.4.1 compiled from source on Linux Mandrake 7.1. Dual P-3 Xeon with 2GB ram. 1. Compiled R with link to Intel Math Kernel Library (for fast BLAS), which needed pthread. C-c at the R prompt ends the R session. 2. Compiled R with link to (threaded)
2012 Sep 06
1
nut-scanner pthread issue
Hi, the terminating part of nut-scanner can crash in pthread code, because some threads won't exist. For example snmp part: ============================== if( allow_snmp && nutscan_avail_snmp ) { if( start_ip == NULL ) { printq(quiet,"No start IP, skipping SNMP\n"); } else { printq(quiet,"Scanning SNMP bus.\n"); #ifdef HAVE_PTHREAD if(
2010 Feb 14
0
[LLVMdev] [cfe-dev] clang with pthread on mingw
David, Your fix sounds fine to me. Please apply. --Owen On Feb 14, 2010, at 6:30 AM, David Chisnall wrote: > Hi Vincent, > > This is an LLVM issue, rather than a clang issue, so llvmdev is the appropriate mailing list for this report. > > Your fix looks semantically valid, but it would be cleaner to only create and destroy the pthread_rwlockattr_t if it is actually needed,
2004 Feb 22
0
wine-pthread defunct
hi friends, I have been playing with wine for quiet some time now. I wanted to check how many instance of wine can it run, and started opening wordpad. After 700 instances wine starts creating defunct process. The wine-pthread creates defunct. I don't know why. I checked the for free memory, and it is there in the system. So i don't what may be the problem. Is there any limitation
2009 May 14
0
Re: No wine-pthread in 1.1.19 ?
vitamin wrote: > > "wine-pthread" was removed indeed as it's now integrated into loader as the only remaining option. The reason I'm asking is because in some games it is reported that using wine-pthread increases the performance in some games. So how do I enable it, or is it enabled now by default? Or is it integrated in the sense that it has merged together and
2013 Dec 20
0
[LLVMdev] Switch instruction optimization
On first glance, this looks like it should be handled by ForwardSwitchConditionToPHI in SimplifyCFG. (Note: That's a guess. I'm reading the code for the first time.) I'd suggest filling a bug with all of the options you're running with. We really should catch this case. Well, really there's two missed optimization cases here. Even without the case value forwarding,
2009 Jul 08
6
recently moved to 1.1.25, no wine-pthread command
I have done some reading and gather than wine-pthread was dropped somewhere around 1.1.19. Problem I have is that I have an application (newsleecher) which effectively never starts up (gave it 10 minutes at one point, used 100% cpu the whole time) with strait wine command on the older wine version, I think 1.0.something, came with ubuntu 8.04 in one of the unsupported repositories. It starts up
2010 Feb 14
2
[LLVMdev] [cfe-dev] clang with pthread on mingw
Hi Vincent, This is an LLVM issue, rather than a clang issue, so llvmdev is the appropriate mailing list for this report. Your fix looks semantically valid, but it would be cleaner to only create and destroy the pthread_rwlockattr_t if it is actually needed, rather than creating it, initialising it, not using it, and then destroying it on mingw (and, as the code currently stands, *BSD). The
2012 Nov 29
0
[LLVMdev] radr://12777299, "potential pthread/eh bug exposed by libsanitizer"
If this is the same test: http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/eh/cond1.C.diff?cvsroot=gcc&r1=NONE&r2=1.1, then it doesn't fail for me on Mac OS 10.8 with ASan (Clang r168632) Have you tried symbolizing the report? On Thu, Nov 29, 2012 at 11:07 AM, Alexander Potapenko <glider at google.com> wrote: > Jack, can you please upload this test somewhere?
2009 Oct 14
2
[LLVMdev] undoing the pthread changes
Pthread search changes broke freebsd so they are coming out until something better can be done -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20091014/238683da/attachment.html> -------------- next part -------------- A non-text attachment was scrubbed... Name: undopthread.patch Type: text/x-patch Size: