> On Jan 26, 2019, at 6:41 PM, David M. Lary via lldb-dev
> wrote:
>
> I'm writing a Swift application for MacOS that makes use of a C/C++
> dylib from a third party to interact with a film scanner. The
> application uses dlopen() & dlsym() to discover and call the C wrapper
> function for th
On Sun, Jan 27, 2019 at 10:33 AM Adrian Prantl wrote:
> > On Jan 26, 2019, at 6:41 PM, David M. Lary via lldb-dev
> > wrote:
> >
> > I'm writing a Swift application for MacOS that makes use of a C/C++
> > dylib from a third party to interact with a film scanner. The
> > application uses dlopen(
Hi,
As running in a debugger is very slow, I compile my C source code to
LLVM .ll code and manually insert some commands in the .ll file to
inspect things that I am interested in.
But the intrinsics offered by the LLVM langref is rather limited.
https://llvm.org/docs/LangRef.html
I am not sure