wlav

Results 359 comments of wlav

Since there is no conda package for 3.0.0 yet, do I assume correctly you are installing 3.0.0 in a conda environment? What I'm digging for is that the conda compilers...

In the command line case, run with: ``` $ strace python ... ``` and in the Jupyter case, similar: ``` $ strace jupyter notebook ``` It will give a massive...

I'm at a loss ... Let me send a link to the output of the github CI later. I still need to test all wheels (there are still issues left...

Per machine is easy enough if doing: ``` export CLING_STANDARD_PCH=$HOME/$HOST.pch ``` or some other host specific name. However, I'd recommend setting `$EXTRA_CLING_ARGS` to `-O2` (and not setting `$CLING_STANDARD_PCH`).

Yes and no. The default name is modified to reflect some of the settings from `EXTRA_CLING_ARGS`: ``` if 'native' in cling_args: pchname += 'native.' if 'openmp' in cling_args: pchname +=...

Back from vacation. :) Yes, this is an old one: https://bitbucket.org/wlav/cppyy/issues/93/missing-space-makes-operator-resolve-to and for that reason, a regression test exists: https://github.com/wlav/cppyy/blob/master/test/test_operators.py#L227 Does this occur only with conda?

The `/Users` seems to indicate MacOS? There have been a range of reports stating that it's not possible to install on Mac, and all are variations on C++ headers not...

> Btw., the linked bitbucket page says: "We can't let you see this page" I see. Has to do with the repo being provide (I was getting too much spam)....

I find with HEAD that the code is okay: ``` #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wformat-security" __attribute__((used)) extern "C" void __cf_5(void* obj, int nargs, void** args, void*...

Cling modified modules for various reasons. LLVM13 support is first on my list (one final issue left), then enabling modules has the highest priority.