CastXMLSuperbuild icon indicating copy to clipboard operation
CastXMLSuperbuild copied to clipboard

Windows : error popup when running castxml using clang-cl 18.1.8

Open hlide opened this issue 7 months ago • 0 comments

Image

Sorry for the message in French, it says it can't retrieve the symbol. I first tried with clang-cl 20.1.0 which fails with a similar message. Since the binary seems to link to libLLVM 18, I then tried clang-cl 18.1.8 but it also fails.

So the issue is probably due to castxml and not clang-cl.

What's more, if I use an old castxml.exe, I get :

Image

example.hpp is :

#define EXAMPLE_HPP

#include <string>

namespace demo {

  class Animal {
  public:
    Animal(const std::string &name);
    virtual ~Animal();
    virtual void speak() const;
  private:
    std::string _name;
  };

  struct Point {
    double x;
    double y;
  };

} // namespace demo

#endif // EXAMPLE_HPP

So I'm kinda running out of options.

I'm using Microsoft Studio Visual 2022 and need to create a tool to facilitate reflexivity, persistence and replication.

hlide avatar Jun 18 '25 14:06 hlide