Peter Hill
Peter Hill
This is probably quite easy with CMake, as we basically do something like this for the commit already. CMake can probably generate the file too, although possibly without the fancy...
This is failing because it now uses C++17, which causes googletest to use `std::variant`, which in turn clashes with `mpark::variant`. I thought that `mpark::variant` nicely fell-back to using `std::variant`, but...
This is either a compiler or a language bug, depending on your point of view: https://stackoverflow.com/questions/51309467/using-stdvisit-on-a-class-inheriting-from-stdvariant-libstdc-vs-libc :disappointed: One workaround seems to be to specialise `std::variant_size` for `Options::AttributeType`. I'll see if...
I cannot get `std::variant` to work -- basically it's not currently possible to inherit from `std::variant` with gcc. Might be fixed in C++23! Ok, I think this is really a...
Sphinx numbers them iff they have a `:label:`: https://www.sphinx-doc.org/en/master/usage/restructuredtext/directives.html#math, so this ```rst .. math:: :label: eq:coordtransform \begin{aligned} x = {\sigma_{B\text{pol}}}\left(\psi - \psi_0\right) \qquad y = \theta \qquad z = \sigma_{B\text{pol}}...
I guess this is basically the "mesh generalisation" project.
Hi @akrause2014, I think I've possibly worked this out: it looks like it's coming from how we link against Libuuid. Please could you set `-DBOUT_USE_UUID_SYSTEM_GENERATOR=off` when you configure BOUT++ using...
These are all symbols from the netCDF C++ API, e.g. `netCDF::NcFile::NcFile(std::__cxx11::basic_string const&, netCDF::NcFile::FileMode)`. You're successfully compiling it, so the headers must be available, but something's going wrong in the linking....
Sorry @akrause2014, I thought I had replied the other day, but my comment seems to have vanished into the ether. Please could you also post the link line for `serial_tests`?...
Ah, looks like we need different flags for `.dylib` files. Please try `nm -a` or `nm -g`