-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
2,411 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
#************************************************************************** | ||
#* * | ||
#* OCaml * | ||
#* Derived from the work of: * | ||
#* Damien Doligez, projet Gallium, INRIA * | ||
#* * | ||
#* Copyright 2015 Institut National de Recherche en Informatique et * | ||
#* en Automatique. * | ||
#* * | ||
#* All rights reserved. This file is distributed under the terms of * | ||
#* the GNU Lesser General Public License version 2.1, with the * | ||
#* special exception on linking described in the file LICENSE. * | ||
#* * | ||
#************************************************************************** | ||
|
||
*.o | ||
*.a | ||
*.so | ||
*.obj | ||
*.lib | ||
*.dll | ||
*.la | ||
*.cm[ioxat] | ||
*.cmx[as] | ||
*.cmti | ||
*.annot | ||
*.exe | ||
*.exe.manifest | ||
.DS_Store | ||
*.out | ||
*.out.dSYM | ||
*.swp | ||
_ocamltest | ||
_ocamltestd | ||
*.odoc | ||
.merlin | ||
|
||
_build/ | ||
_build0/ | ||
_build1/ | ||
_build2/ | ||
.rsync-output | ||
.rsync-output-compare | ||
_compare/ | ||
_runtest/ | ||
_stage2_configure/ | ||
autom4te.cache | ||
|
||
Makefile | ||
config.log | ||
config.status | ||
configure | ||
configure_opts | ||
ocaml-stage1-config.status | ||
ocaml-stage2-config.status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build & install Flambda backend", | ||
"type": "shell", | ||
"command": "opam exec --switch=4.11.1 make install", | ||
"group": "build", | ||
"problemMatcher": [ | ||
"$ocamlc" | ||
] | ||
} | ||
|
||
{ | ||
"type": "dune", | ||
"problemMatcher": [ | ||
"$ocamlc" | ||
], | ||
"group": "build", | ||
"label": "dune: build /dune" | ||
} | ||
] | ||
} |
Oops, something went wrong.