mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
797891c995
* Initial Library Loader * Load library as part of Model factory * Dynamically search and find the dlls * Update tests to use locally built runtimes * Fix dylib loading, add macos runtime support for sample/tests * Bypass automatic loading by default. * Only set CMAKE_OSX_ARCHITECTURES if not already set, allow cross-compile * Switch Loading again * Update build scripts for mac/linux * Update bindings to support newest breaking changes * Fix build * Use llmodel for Windows * Actually, it does need to be libllmodel * Name * Remove TFMs, bypass loading by default * Fix script * Delete mac script --------- Co-authored-by: Tim Miller <innerlogic4321@ghmail.com>
11 lines
523 B
Bash
Executable File
11 lines
523 B
Bash
Executable File
mkdir -p runtimes
|
|
rm -rf runtimes/linux-x64
|
|
mkdir -p runtimes/linux-x64/native
|
|
mkdir runtimes/linux-x64/build
|
|
cmake -S ../../gpt4all-backend -B runtimes/linux-x64/build
|
|
cmake --build runtimes/linux-x64/build --parallel --config Release
|
|
cp runtimes/linux-x64/build/libllmodel.so runtimes/linux-x64/native/libllmodel.so
|
|
cp runtimes/linux-x64/build/libgptj*.so runtimes/linux-x64/native/
|
|
cp runtimes/linux-x64/build/libllama*.so runtimes/linux-x64/native/
|
|
cp runtimes/linux-x64/build/libmpt*.so runtimes/linux-x64/native/
|