I recently pulled the latest emacs-30 branch (f47297782bdb5e5a07e02f119c8013d11f7d7fae), and I'm building emacs using MSYS2 mingw64 on Windows.
With a build on this branch, certain symbols (from the nerd-icons package) were rendering as boxes and not their actual symbol. I suspected that this was because gdi was being used, and indeed using describe-char on any character shows me a font starting with `gdi:`, indicating the uniscribe or harfbuzz are not being used. This is not the case on the emacs-29 branch, where I see `uniscribe:` instead (and the symbols render correctly). I was not able to get harfbuzz to load on that branch, which is why I was trying emacs-30 to see if something was different there. To investigate this, I first used procmon to look at the syscalls to see if anything was trying to load libharfbuzz-0.dll, and I did see it in the trace I took, however the callstack was an OS callstack, and not from where I expected (src\w32uniscribe.c:syms_of_w32uniscribe_for_pdumber). I rebuilt with debug symbols, and set a breakpoint in that function - it was called once, but `initialized` was false so the LoadLibrary calls never ran. I'm not too familiar with how pdumper works, or the emacs source in general, so I'm not sure what the actual root cause is here. I did a bit more debugging to see when `initialized` was set to true, and it does get set later during initialization. I noted that I do not have a .pdmp file in my installation direction, which it seems to be trying to load during startup. One more piece of information: attempting to yank any text results in the error: `Coding system is invalid or doesn't have an eol variant for dos line ends: nil` This error occurs when starting with -Q and attempting to yank any text. If I call `(set-selection-coding-system 'utf-16-le)`, it resolves the issue. However, I didn't have to do this in emacs-29, so this makes me think something has possibly broken with init on Windows, since I believe this is not supposed to be nil by default? I'm happy to assist by providing any additional info if needed! Thanks, Casey In GNU Emacs 30.0.90 (build 1, x86_64-w64-mingw32) of 2024-09-09 built on DESKTOP-EK25TL1 Windowing system distributor 'Microsoft Corp.', version 10.0.19045 System Description: Microsoft Windows 10 Pro (v10.0.2009.19045.4780) Configured using: 'configure -prefix=/e/dev/emacs-src --without-dbus --without-pop --with-native-compilation --with-wide-int --without-compress-install --with-json --with-tree-sitter --without-imagemagick 'CFLAGS=-O2 -mtune=native -march=native -fomit-frame-pointer -ftree-vectorize -Wno-error=implicit-function-declaration -pipe -g' PKG_CONFIG_PATH=/mingw64/lib/pkgconfig:/mingw64/share/pkgconfig' Configured features: ACL GIF GMP GNUTLS HARFBUZZ JPEG LCMS2 LIBXML2 MODULES NATIVE_COMP NOTIFY W32NOTIFY PDUMPER PNG RSVG SOUND SQLITE3 THREADS TIFF TOOLKIT_SCROLL_BARS TREE_SITTER WEBP XPM ZLIB (NATIVE_COMP present but libgccjit not available) Important settings: value of $LANG: en_US.UTF-8 locale-coding-system: cp1252 Major mode: Fundamental Minor modes in effect: tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t blink-cursor-mode: t minibuffer-regexp-mode: t buffer-read-only: t line-number-mode: t indent-tabs-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message mailcap yank-media puny dired dired-loaddefs rfc822 mml mml-sec password-cache epa derived epg rfc6068 epg-config gnus-util text-property-search time-date subr-x mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils rmc iso-transl tooltip cus-start cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel touch-screen dos-w32 ls-lisp disp-table term/w32-win w32-win w32-vars term/common-win tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads w32notify w32 lcms2 multi-tty move-toolbar make-network-process native-compile emacs) Memory information: ((conses 16 181417 72491) (symbols 48 21836 0) (strings 32 65423 2126) (string-bytes 1 4014620) (vectors 16 34658) (vector-slots 8 1231317 136112) (floats 8 196 11) (intervals 56 408 0) (buffers 992 11))