Dev Builds » 20260426-0733

You are viewing an old NCM Stockfish dev build test. You may find the most recent dev build tests using Stockfish 15 as the baseline here.

Use this dev build

NCM plays each Stockfish dev build 20,000 times against Stockfish 14. This yields an approximate Elo difference and establishes confidence in the strength of the dev builds.

Summary

Host Duration Avg Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo

Test Detail

ID Host Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo CLI PGN

Commit

Commit ID 767dcfe48d2e2acce4c6539d8c5169a3d3b5dec9
Author mstembera
Date 2026-04-26 07:33:03 UTC
Fix Universal build on Windows TRACKED_TOP previously used a shell pipeline (xargs, awk, sort) to extract unique top-level directory/file names from SRCS and HEADERS. When invoking make from cmd.exe on Windows, $(shell ...) uses cmd.exe rather than sh.exe, so the pipeline fails because cmd.exe does not support Unix pipe syntax. Other MSYS2 tools (e.g. the compiler) work fine because they are invoked directly as commands, not through a shell pipeline. This caused TRACKED_TOP to be empty, so ln -s never ran and the per-arch temp_builds subdirectories were left without a Makefile symlink, breaking the universal build with: "No rule to make target 'universal-object-nopgo'". Fixed by replacing the shell pipeline with pure GNU make built-in functions (sort, foreach, firstword, subst) which have no shell or PATH dependencies and work identically on Windows, Linux and macOS. closes https://github.com/official-stockfish/Stockfish/pull/6762 No functional change
Copyright 2011–2026 Next Chess Move LLC