Manu Sánchez

Results 100 comments of Manu Sánchez

About #23, for reference you can check what tinyrefl/tool/externals/externals.cmaje does when not using Conan (find_program(llvm-config) calls with version checks etc)

(sorry, I'm on mobile) Sorry, that arbitrary flags patch should not be there, it's something not related to Conan/dependencies. The reason I do that is to pass any flag (not...

The ABI flag is to be able to build on environments using the old gcc ABI with a modern GCC. Conan models that case as part of its os-arch-compiler-stdlib-compilerversion build...

See https://docs.conan.io/en/latest/howtos/manage_gcc_abi.html?highlight=libcxx

Sorry for the delay: > But why can you not do the ABI thing using CMAKE_CXX_FLAGS? I think you're right, I should be able to manage this from the conan...

The reason why this PR stagnated was that first we have to figure out how to include libclang into mainstream conan first. There's a work in progress PR in conan-center-index,...

Of course, don't worry, we just need to figure out llvm first. I'm just patching stuff as bugs appear. El mar., 23 jun. 2020 17:43, Jonathan Müller escribió: > You...

I would be very careful with this. While libclang exposes mangled entity names, these names are specific to the clang compiler (Actually, clang on linux implements itanium iirc). Also nothing...

Oh, I see they explicitly support Itanium and MS ABIs, interesting. Thanks for pointing out, I'm curious how they're handling the MSVC case.

After studying your code a bit I think this could be done by also scanning short flags for an `=` sign. Then if one is found assume the flag is...