File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ # To work around MDX issues
2
+ README.md text eol =lf
Original file line number Diff line number Diff line change @@ -842,7 +842,8 @@ let try_mkdir path =
842
842
The checks also apply to following symlinks:
843
843
844
844
``` ocaml
845
- # Unix.symlink "dir1" "link-to-dir1"; Unix.symlink "/tmp" "link-to-tmp";;
845
+ # Unix.symlink "dir1" "link-to-dir1";
846
+ Unix.symlink (Filename.get_temp_dir_name ()) "link-to-tmp";;
846
847
- : unit = ()
847
848
848
849
# Eio_main.run @@ fun env ->
Original file line number Diff line number Diff line change 1
1
(library
2
2
(name eio_windows)
3
3
(public_name eio_windows)
4
- (library_flags :standard -ccopt -lbcrypt -ccopt -lntdll)
4
+ (library_flags :standard -cclib -lbcrypt -cclib -lntdll)
5
5
(enabled_if (= %{os_type} "Win32"))
6
6
(foreign_stubs
7
7
(language c)
8
8
(include_dirs ../lib_eio/unix/include)
9
9
(names eio_windows_stubs eio_windows_cstruct_stubs))
10
+ (c_library_flags :standard -lbcrypt -lntdll)
10
11
(libraries eio eio.unix eio.utils fmt))
11
12
12
13
(rule
You can’t perform that action at this time.
0 commit comments