在将Clair安装到Rascal 0.17.0之后
import lang::cpp::AST;
给出以下错误:
Could not import module lang::cpp::AST: can not find in search path
我的Rascal项目显示了一些搜索路径条目,但没有显示Clair路径。
关于如何使这件事奏效,有什么建议吗?
注意,我尝试在Rascal的最新版本(0.23)上安装Clair,但是失败了(因此我使用了旧的0.17.0版本):
Missing requirement: clair 0.2.0.202103011036 (clair 0.2.0.202103011036) requires 'osgi.bundle; rascal_eclipse [0.17.0,0.19.0)' but it could not be found
发布于 2022-06-13 06:55:25
我想您需要手动将以下内容添加到项目中。
在MANIFEST.MF -> Require Bundle: rascal_eclipse中
在RASCAL.MF -> Require中-库:收库://clair
https://stackoverflow.com/questions/72594876
复制相似问题