diff options
author | Ssslakter <67190162+Ssslakter@users.noreply.github.com> | 2023-09-15 13:25:10 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-15 07:25:10 +0100 |
commit | 81a36b8713721e2cfd098fad04972bf823ef0d5d (patch) | |
tree | 6e055ecdb5fa290db2c912123b2807db525264cf /README.md | |
parent | 0633c85514891141f5d8ded4e1a935ca430c97fe (diff) | |
download | candle-81a36b8713721e2cfd098fad04972bf823ef0d5d.tar.gz candle-81a36b8713721e2cfd098fad04972bf823ef0d5d.tar.bz2 candle-81a36b8713721e2cfd098fad04972bf823ef0d5d.zip |
Add link error info (#851)
* add link error info
* grammar fix
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -275,6 +275,24 @@ This is a bug in gcc-11 triggered by the Cuda compiler. To fix this, install a d env CANDLE_NVCC_CCBIN=/usr/lib/gcc/x86_64-linux-gnu/10 cargo ... ``` +#### Linking error on windows when running rustdoc or mdbook tests + +``` +Couldn't compile the test. +---- .\candle-book\src\inference\hub.md - Using_the_hub::Using_in_a_real_model_ (line 50) stdout ---- +error: linking with `link.exe` failed: exit code: 1181 +//very long chain of linking + = note: LINK : fatal error LNK1181: cannot open input file 'windows.0.48.5.lib' +``` + +Make sure you link all native libraries that might be located outside a project target, e.g., to run mdbook tests, you should run: + +``` +mdbook test candle-book -L .\target\debug\deps\ ` +-L native=$env:USERPROFILE\.cargo\registry\src\index.crates.io-6f17d22bba15001f\windows_x86_64_msvc-0.42.2\lib ` +-L native=$env:USERPROFILE\.cargo\registry\src\index.crates.io-6f17d22bba15001f\windows_x86_64_msvc-0.48.5\lib +``` + #### Tracking down errors You can set `RUST_BACKTRACE=1` to be provided with backtraces when a candle |