{"id":39608867,"url":"https://github.com/miyako/llama-cpp","last_synced_at":"2026-04-06T09:02:53.788Z","repository":{"id":320755952,"uuid":"1083125274","full_name":"miyako/llama-cpp","owner":"miyako","description":"Local inference engine","archived":false,"fork":false,"pushed_at":"2026-04-05T12:19:23.000Z","size":168446,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-05T14:17:14.787Z","etag":null,"topics":["4d-dependency","4d-llm","llama-cpp"],"latest_commit_sha":null,"homepage":"https://miyako.github.io/llama-cpp/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/miyako.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-25T11:53:53.000Z","updated_at":"2026-04-05T12:19:30.000Z","dependencies_parsed_at":"2025-10-25T18:40:25.284Z","dependency_job_id":null,"html_url":"https://github.com/miyako/llama-cpp","commit_stats":null,"previous_names":["miyako/llama-cpp"],"tags_count":45,"template":true,"template_full_name":null,"purl":"pkg:github/miyako/llama-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miyako%2Fllama-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miyako%2Fllama-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miyako%2Fllama-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miyako%2Fllama-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miyako","download_url":"https://codeload.github.com/miyako/llama-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miyako%2Fllama-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31466228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["4d-dependency","4d-llm","llama-cpp"],"created_at":"2026-01-18T08:02:47.658Z","updated_at":"2026-04-06T09:02:53.761Z","avatar_url":"https://github.com/miyako.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"![version](https://img.shields.io/badge/version-20%2B-E23089)\n![platform](https://img.shields.io/static/v1?label=platform\u0026message=mac-intel%20|%20mac-arm%20|%20win-64\u0026color=blue)\n[![license](https://img.shields.io/github/license/miyako/llama-cpp)](LICENSE)\n![downloads](https://img.shields.io/github/downloads/miyako/llama-cpp/total)\n\n# llama.cpp\nLocal inference engine\n\n**aknowledgements**: [ggml-org/llama.cpp](https://github.com/ggml-org/llama.cpp)\n\n### Apple Silicon\n\n* set `BUILD_SHARED_LIBS` to `FALSE`\n \n### Intel\n\n* set `GGML_CPU` to `FALSE`\n* set `CMAKE_OSX_ARCHITECTURES`  to `x86_64`\n\n### Windows\n\n~~set `LLAMA_CURL` to `FALSE`~~\n~~c.f. https://github.com/ggml-org/llama.cpp/issues/9937~~\n\n```\ncmake -S . -B build -A x64 ^\n -DBUILD_SHARED_LIBS=FALSE ^\n -DCMAKE_TOOLCHAIN_FILE={...\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake} ^\n -DLLAMA_BUILD_SERVER=ON\n\ncmake --build build --config Release\n```\n\n* open project sith visual studio\n* add curl include paths\n* add libraries\n\n```\nCrypt32.lib\nSecur32.lib\nIphlpapi.lib\nlibcurl.lib\nzlib.lib\nws2_32.lib\n``` \n\n* build each target with `MT`\n\n### Windows ARM\n\nARM NEON and fp16 C-intrinsics not supported by MSVC native compiler. Use `Clang` or `ninja` instead.\n\n```\ncmake -B build -G \"Visual Studio 17 2022\" -A ARM64 -T ClangCL\n -DCMAKE_SYSTEM_PROCESSOR=ARM64\n -DOPENSSL_ROOT_DIR={arm64 openssl dir}\n -DLLAMA_BUILD_TESTS=OFF\n -DLLAMA_BUILD_SERVER=ON\n -DGGML_OPENMP=OFF\n -DGGML_CCACHE=OFF\n -DBUILD_SHARED_LIBS=FALSE\n```\n\n\n```\ncmake -B build\n -DCMAKE_SYSTEM_PROCESSOR=ARM64\n -DOPENSSL_ROOT_DIR={arm64 openssl dir}\n -DLLAMA_BUILD_TESTS=OFF\n -DLLAMA_BUILD_SERVER=ON\n -DGGML_OPENMP=OFF\n -DGGML_CCACHE=OFF\n -DBUILD_SHARED_LIBS=FALSE\n```\n\n```\ncmake --build build --config Release\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiyako%2Fllama-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiyako%2Fllama-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiyako%2Fllama-cpp/lists"}