We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e91146 commit 5befa08Copy full SHA for 5befa08
1 file changed
README.md
@@ -4,8 +4,16 @@ This is a simple DLL library to use **pulldown-cmark** from any win32 applicatio
4
5
# How to build
6
7
-- 64bits: `cargo build --target=x86_64-pc-windows-msvc --release`
8
-- 32bits: `cargo build --target=i686-pc-windows-msvc --release`
+- 64bits:
+```
9
+rustup default stable-x86_64-pc-windows-msvc
10
+cargo build --target=x86_64-pc-windows-msvc --release
11
12
+- 32bits:
13
14
+rustup default stable-i686-pc-windows-msvc
15
+cargo build --target=i686-pc-windows-msvc --release
16
17
18
19
For instance the **pascal** directory contains a library to use with Delphi.
0 commit comments