Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mudler/parakeet.cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mudler/parakeet.cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fix/server-windows-build
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 1 commit
  • 1 file changed
  • 2 contributors

Commits on Jun 17, 2026

  1. fix(server): build the model fetcher on Windows (MSVC)

    model_fetch.cpp included POSIX-only <sys/wait.h>/<unistd.h> and used
    fork/execvp/waitpid, so the Windows release build failed with
    'Cannot open include file: sys/wait.h'. Add a Windows path using _spawnvp
    (_P_WAIT), which runs curl/wget directly without a shell, keeping the
    no-shell-injection property of the POSIX exec path. have_tool now uses
    'where' on Windows and 'command -v' on POSIX.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
    mudler and claude committed Jun 17, 2026
    Configuration menu
    Copy the full SHA
    e7b0ec5 View commit details
    Browse the repository at this point in the history
Loading