Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to removed Libmaincil module #39

Merged
merged 2 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App.re
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ let renumber_goblint_analyses = registered_name => {
};

let init_goblint = (solver, spec, registered_name, config, cil) => {
Cilfacade.init();
AfterConfig.run(); // This registers the "base" analysis

try(renumber_goblint_analyses(registered_name)) {
Expand Down Expand Up @@ -67,7 +68,6 @@ let init_goblint = (solver, spec, registered_name, config, cil) => {

GobConfig.set_auto("trans.activated[+]", "'expeval'");

Cilfacade.init();
Maingoblint.handle_extraspecials();
Maingoblint.handle_flags();

Expand Down
1 change: 1 addition & 0 deletions src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
yojson
zarith
zarith_stubs_js)
(flags :standard -linkall)
(js_of_ocaml
(javascript_files
../runtime/stubs.js
Expand Down