Skip to content

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

@hlide

Description

@hlide

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions