Skip to content

Commit 56d9fe9

Browse files
committed
WIP: Getting MDX tests working on Windows
1 parent 355f8da commit 56d9fe9

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# To work around MDX issues
2+
README.md text eol=lf

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,12 +752,17 @@ Eio.Io Net Connection_failure Refused Unix_error (Connection refused, "connect",
752752
```
753753

754754
If we ran this using another backend, the `Unix_error` part might change.
755-
To avoid this problem, you can use `Eio.Exn.Backend.show` to hide the backend-specific part of errors:
755+
To avoid this problem, you can use `Eio.Exn.Backend.show`
756756

757757
```ocaml
758758
# Eio.Exn.Backend.show := false;;
759759
- : unit = ()
760+
```
761+
762+
to hide the backend-specific part of errors:
760763

764+
<!-- $MDX skip -->
765+
```ocaml
761766
# Eio_main.run @@ fun env ->
762767
let net = Eio.Stdenv.net env in
763768
Switch.run @@ fun sw ->

dune

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22
(package eio_main)
33
(deps (package eio_main) (env_var "EIO_BACKEND"))
44
(preludes doc/prelude.ml)
5-
(enabled_if (<> %{os_type} "Win32"))
65
(files README.md))

lib_eio_windows/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
(library
22
(name eio_windows)
33
(public_name eio_windows)
4-
(library_flags :standard -ccopt -lbcrypt -ccopt -lntdll)
4+
(library_flags :standard -cclib -lbcrypt -cclib -lntdll)
55
(enabled_if (= %{os_type} "Win32"))
66
(foreign_stubs
77
(language c)
88
(include_dirs ../lib_eio/unix/include)
99
(names eio_windows_stubs eio_windows_cstruct_stubs))
10+
(c_library_flags :standard -lbcrypt -lntdll)
1011
(libraries eio eio.unix eio.utils fmt))
1112

1213
(rule

0 commit comments

Comments
 (0)