-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
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 :
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.
RichardGe
Metadata
Metadata
Assignees
Labels
No labels

