Skip to content
Snippets Groups Projects
Commit 53724e8a authored by florian's avatar florian
Browse files

DOC: Add instructions for macOS

parent c3440c72
No related branches found
No related tags found
No related merge requests found
Pipeline #10653 passed
Pipeline: CaosDB Julia Integration Tests

#10660

    ......@@ -19,6 +19,22 @@ julia> using CaosDB
    julia> connection = CaosDB.Connection.connect() # Enter host, port, path to SSL certificate, and credentials here
    ```
    ### Troubleshooting
    On MacOS, if you encounter errors like
    ```
    could not load library "libccaosdb"
    dlopen(libccaosdb.dylib, 1): Library not loaded: libcaosdb.dylib
    Referenced from ~/.local/lib/libccaosdb.dylib
    Reason: image not found
    ```
    (note that the library that couldn't be loaded is `libcaosdb`, i.e.,
    the wrapped cpp library couldn't be loaded from the c interface) make
    sure you have the location of `libcaosdb.dylib` and `libccaosdb.dylib`
    in both, your `LD_LIBRARY_PATH` and your `DYLD_LIBRARY_PATH`.
    ## Tests
    After installing, the unit tests can be executed by
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment