Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frama Clang
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
Frama Clang
Commits
6de482be
Commit
6de482be
authored
4 years ago
by
Michele Alberti
Committed by
Virgile Prevosto
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[CI] Try to add llvm-10 support.
parent
786eea2f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nix/default.nix
+13
-3
13 additions, 3 deletions
nix/default.nix
with
13 additions
and
3 deletions
nix/default.nix
+
13
−
3
View file @
6de482be
...
...
@@ -11,9 +11,9 @@ let
sha256
=
"0srpsnr5fhn2zp36jx3inj6vrs5n302hh3vv0c7rsc90aq5i27cr"
;
})
{};
in
plugins
.
helpers
.
simple_plugin
(
plugins
.
helpers
.
simple_plugin
{
inherit
pkgs
stdenv
src
opam2nix
ocaml_version
plugins
;
name
=
"frama-clang"
;
name
=
"frama-clang
-on-llvm-9
"
;
deps
=
[
unstablePckgs
.
llvmPackages_9
.
clang-unwrapped
unstablePckgs
.
llvm_9
pkgs
.
gnused
];
opamPackages
=
[
"camlp5"
];
preFramaCTests
=
''
...
...
@@ -21,4 +21,14 @@ plugins.helpers.simple_plugin
export HOME=$(mktemp -d)
why3 config --detect
''
;
}
})
//
{
on-llvm10
=
(
plugins
.
helpers
.
simple_plugin
{
inherit
pkgs
stdenv
src
opam2nix
ocaml_version
plugins
;
name
=
"frama-clang-on-llvm-10"
;
deps
=
[
unstablePckgs
.
llvmPackages_10
.
clang-unwrapped
unstablePckgs
.
llvm_10
pkgs
.
gnused
];
opamPackages
=
[
"camlp5"
];
preFramaCTests
=
''
echo CONFIGURING Why3 for Frama_Clang.
export HOME=$(mktemp -d)
why3 config --detect
''
;
});
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment