search for: dlopen'ing

Displaying 18 results from an estimated 18 matches for "dlopen'ing".

2015 Feb 17
2
[LLVMdev] Segfault when using llvm-3.6 and OpenGL at the same time on Linux (with mesa, which uses llvm-3.4)
...eb 16, 2015 at 10:38:52PM +0100, Daniel Albuschat wrote: > > Hello there, > > > > tl;dr: > > Is it a known behaviour that using llvm-3.4 and llvm-3.6 at the same time > > in the same process (while llvm-3.6 is used from a linked shared library > > and llvm-3.4 is dlopen'ed - with a strange detail: Especially if > -rdynamic > > is used when linking the program). > > If so, is there a workaround? > > If not, can it be fixed in llvm-3.6? > > The NVIDIA proprietary driver does not use mesa at all. Also based on > your backtrace, you...
2015 Aug 23
2
RFC: New dependency on FFmpeg?
On 08/22/2015 04:27 PM, Pau Garcia i Quiles wrote: > But I guess the problem is not source-compatibility for > wine but binary-compatibility for CrossOver. In that case, I'd suggest > dlopen'ing and checking for the symbol you want. There's also issues with structure changes which won't be caught that way. libwmapro sounds like the sanest solution, short of doing the same thing with Wine.
2015 Feb 16
4
[LLVMdev] Segfault when using llvm-3.6 and OpenGL at the same time on Linux (with mesa, which uses llvm-3.4)
Hello there, tl;dr: Is it a known behaviour that using llvm-3.4 and llvm-3.6 at the same time in the same process (while llvm-3.6 is used from a linked shared library and llvm-3.4 is dlopen'ed - with a strange detail: Especially if -rdynamic is used when linking the program). If so, is there a workaround? If not, can it be fixed in llvm-3.6? Long story: I am writing a program that creates binaries using llvm-3.6 and has a Qt frontend. I noticed that, when running it on Ubuntu Lin...
2017 Nov 08
6
[RFC] lld: Dropping TLS relaxations in favor of TLSDESC
...ame feature is because they were different in speed, and we have to use (formerly) slow models when we know less about their run-time memory layout at compile-time or link-time. So, there was a trade-off between generality and performance. For example, if you want to use thread-local variables in a dlopen(2)'able DSO, you need to choose the slowest model. If a linker knows at link-time that a more restricted access model is applicable (e.g. if it is linking a main executable, it knows for sure that it is not creating a DSO that will be used via dlopen), the linker is allowed to rewrite instructi...
2013 Jul 12
2
[LLVMdev] design for an accurate ODR-checker with clang
...is involved in the link (note that there is no mapping from symbol to odr table name). If two .o files contain different hash values for the same name, we have detected an ODR violation and issue a diagnostic. Finally, teach the loader (RuntimeDyld) to do verification and catch ODR violations when dlopen'ing a shared library. Nick -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130711/cde5bf59/attachment.html>
2015 Aug 20
6
RFC: New dependency on FFmpeg?
I have a working implementation of the new xaudio2 API in my tree. Microsoft is treating it as a replacement for dsound[1], and as a result, this new API is used by lots of recent games; see Bug 26808[2] for some examples. Most games that use the xaudio2 API use a version of Microsoft's WMA codec. Wine doesn't currently have the ability to decode this audio for playback. In order for the
2013 Jul 12
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...d in the link (note that there is no mapping from symbol to odr table name). If two .o files contain different hash values for the same name, we have detected an ODR violation and issue a diagnostic. > > Finally, teach the loader (RuntimeDyld) to do verification and catch ODR violations when dlopen'ing a shared library. This is the right basic design, but I'm curious why you're suggesting that the payload should just be a hash instead of an arbitrary string. This isn't going to be performant enough to do unconditionally at every load no matter how much you shrink it. Also,...
2013 Jul 12
3
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...there is no mapping from symbol to odr table name). If two > .o files contain different hash values for the same name, we have detected > an ODR violation and issue a diagnostic. > > > > Finally, teach the loader (RuntimeDyld) to do verification and catch ODR > violations when dlopen'ing a shared library. > > This is the right basic design, but I'm curious why you're suggesting that > the payload should just be a hash instead of an arbitrary string. What are you suggesting goes into this string? > This isn't going to be performant enough to do un...
2005 Mar 11
2
Dynamic smartcard support?
Hi all, and thanks for everyone's work on the 4.0 release! There's been recent discussion on the OpenSC mailing list about getting better/updated smartcard support into OpenSSH. Originating from an OpenSSH package maintainer's desire to keep dependencies to a minimum, the idea to load OpenSC dynamically popped up. Now the question is whether this is an approach that would be favored
2003 Oct 25
0
libao-0.8.4 on OS/X
Hi! Is this the correct place to ask about libao? I'm having a bit of trouble getting libao-0.8.4 running on OS/X 10.2.8 - libao builds fine but dlopen'ing the macosx plugin keeps failing with undefined symbols (from the CoreAudio framework it appears). Steven Schultz --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to '...
2013 Jul 15
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...link (note that there is no mapping from symbol to odr table name). If two .o files contain different hash values for the same name, we have detected an ODR violation and issue a diagnostic. > > > > Finally, teach the loader (RuntimeDyld) to do verification and catch ODR violations when dlopen'ing a shared library. > > This is the right basic design, but I'm curious why you're suggesting that the payload should just be a hash instead of an arbitrary string. > > What are you suggesting goes into this string? The same sorts of things that you were planning on has...
2013 Jul 15
4
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...from symbol to odr table name). If two >> .o files contain different hash values for the same name, we have detected >> an ODR violation and issue a diagnostic. >> > >> > Finally, teach the loader (RuntimeDyld) to do verification and catch >> ODR violations when dlopen'ing a shared library. >> >> This is the right basic design, but I'm curious why you're suggesting >> that the payload should just be a hash instead of an arbitrary string. > > > What are you suggesting goes into this string? > > > The same sorts of th...
2013 Aug 05
2
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...from symbol to odr table name). If two >> .o files contain different hash values for the same name, we have detected >> an ODR violation and issue a diagnostic. >> > >> > Finally, teach the loader (RuntimeDyld) to do verification and catch >> ODR violations when dlopen'ing a shared library. >> >> This is the right basic design, but I'm curious why you're suggesting >> that the payload should just be a hash instead of an arbitrary string. > > > What are you suggesting goes into this string? > > > The same sorts of th...
2013 Jul 15
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...te that there is no mapping from symbol to odr table name). If two .o files contain different hash values for the same name, we have detected an ODR violation and issue a diagnostic. >> > >> > Finally, teach the loader (RuntimeDyld) to do verification and catch ODR violations when dlopen'ing a shared library. >> >> This is the right basic design, but I'm curious why you're suggesting that the payload should just be a hash instead of an arbitrary string. >> >> What are you suggesting goes into this string? > > The same sorts of things tha...
2013 Jul 15
1
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...table name). If two >>> .o files contain different hash values for the same name, we have detected >>> an ODR violation and issue a diagnostic. >>> > >>> > Finally, teach the loader (RuntimeDyld) to do verification and catch >>> ODR violations when dlopen'ing a shared library. >>> >>> This is the right basic design, but I'm curious why you're suggesting >>> that the payload should just be a hash instead of an arbitrary string. >> >> >> What are you suggesting goes into this string? >> &g...
2013 Aug 05
0
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...te that there is no mapping from symbol to odr table name). If two .o files contain different hash values for the same name, we have detected an ODR violation and issue a diagnostic. >> > >> > Finally, teach the loader (RuntimeDyld) to do verification and catch ODR violations when dlopen'ing a shared library. >> >> This is the right basic design, but I'm curious why you're suggesting that the payload should just be a hash instead of an arbitrary string. >> >> What are you suggesting goes into this string? > > The same sorts of things tha...
2017 Nov 08
2
[RFC] lld: Dropping TLS relaxations in favor of TLSDESC
...fferent in speed, and we have to use (formerly) slow models when we > know > > less about their run-time memory layout at compile-time or link-time. So, > > there was a trade-off between generality and performance. For example, if > > you want to use thread-local variables in a dlopen(2)'able DSO, you need > to > > choose the slowest model. If a linker knows at link-time that a more > > restricted access model is applicable (e.g. if it is linking a main > > executable, it knows for sure that it is not creating a DSO that will be > > used via dlopen...
2013 Aug 05
2
[LLVMdev] [cfe-dev] design for an accurate ODR-checker with clang
...table name). If two >>> .o files contain different hash values for the same name, we have detected >>> an ODR violation and issue a diagnostic. >>> > >>> > Finally, teach the loader (RuntimeDyld) to do verification and catch >>> ODR violations when dlopen'ing a shared library. >>> >>> This is the right basic design, but I'm curious why you're suggesting >>> that the payload should just be a hash instead of an arbitrary string. >> >> >> What are you suggesting goes into this string? >> &g...