Isaiah Norton

Results 257 comments of Isaiah Norton

Possibly of interest: https://github.com/auriamg/macdylibbundler

Ref: https://github.com/Keno/Gallium.jl/issues/187#issuecomment-279518987

FWIW, widely-used option for build images is [manylinux](https://github.com/pypa/manylinux) (manylinux1 == centos6, manylinux10 == centos7).

@davidanthoff I hacked something up that might work for you, based on what I understand of your requirements: https://gist.github.com/ihnorton/ee3ef6e2858fdc567681113b81838af2 However, it requires a small patch to base, to get access...

FWIW, `zig cc` is very much worth looking at in this context, if folks here haven't already: https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html Not necessarily as a dependency, but for some of the techniques they've...

FWIW, joblib allows switching between `multiprocessing` and `threading` with a keyword argument. I changed a single call to `joblib.Parallel(backend='threading', ...` to get a usable pyinstrument trace into some code that...

I don't have a specific example handy, but the idea is that using `backend=threading` prevents joblib from spawning a new subprocess. Such a process would not be visible to pyinstrument....

see comment here: https://github.com/Keno/Cxx.jl/releases/tag/v0.2.0 and #181

The DSO error at least may be related to the linking order of pthread: http://stackoverflow.com/questions/19901934/strange-linking-error-dso-missing-from-command-line

Try updating llvm now, but don't re-patch the `-lpthread` thing. A different patch was just merged upstream that I think fixed the issue: http://reviews.llvm.org/D8991