This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
let _ = L.P.do_print ()
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
(executable
|
||||
(name bar)
|
||||
(libraries l))
|
||||
|
|
@ -0,0 +1 @@
|
|||
(lang dune 2.7)
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
$ mkfifo src/foo
|
||||
$ dune build @all
|
||||
$ _build/default/bar.exe
|
||||
hi!
|
||||
$ rm -f src/foo
|
||||
|
||||
Check the error message Dune produces when it encounters a broken
|
||||
symlink:
|
||||
|
||||
$ ln -s broken-link src/foo
|
||||
$ dune build @all
|
||||
File "src/foo", line 1, characters 0-0:
|
||||
Error: File unavailable: src/foo
|
||||
Broken symbolic link
|
||||
[1]
|
||||
$ _build/default/bar.exe
|
||||
hi!
|
||||
$ rm -f src/foo
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
(library
|
||||
(name l))
|
||||
|
|
@ -0,0 +1 @@
|
|||
let do_print () = Format.printf "hi!@\n%!"
|
||||
Loading…
Add table
Add a link
Reference in a new issue