Giter Site home page Giter Site logo

homebrew-emacs-head's Introduction

Banner

Emacs Head

GNU General Public License Version 3.0

Emacs 26 CI Status Badge Emacs 27 CI Status Badge Emacs 28 CI Status Badge Emacs 29 CI Status Badge Emacs 30 CI Status Badge

Emacs Head is an Homebrew Formula based on the original Homebrew Emacs one.

This formula currently supports:

  • GNU Emacs 26.3
  • GNU Emacs 27.2 (or HEAD)
  • GNU Emacs 28.2 (or HEAD)
  • GNU Emacs 29.x (currently 29.2)
  • GNU Emacs HEAD (currently 30.0.50)

Installation

You can install this formula using:

GNU Emacs 26

brew tap daviderestivo/emacs-head
brew install emacs-head@26 --with-cocoa

GNU Emacs 27

brew tap daviderestivo/emacs-head
brew install emacs-head@27 --with-cocoa

If you wish to install the HEAD version of GNU Emacs 27 please do:

brew tap daviderestivo/emacs-head
brew install --HEAD emacs-head@27 --with-cocoa

GNU Emacs 28 (default)

brew tap daviderestivo/emacs-head
brew install emacs-head --with-cocoa

If you wish to install the HEAD version of GNU Emacs 28 please do:

brew tap daviderestivo/emacs-head
brew install --HEAD emacs-head --with-cocoa

GNU Emacs 29

brew tap daviderestivo/emacs-head
brew install emacs-head@29 --with-cocoa

GNU Emacs 30

brew tap daviderestivo/emacs-head
brew install emacs-head@30 --with-cocoa

Screenshots

GNU Emacs running in terminal mode (28.x)

/images/emacs-head-terminal.png

GNU Emacs running in GUI mode (28.x)

GUI Theme: atom-one-dark-theme

Modeline Theme: smart-mode-line-atom-one-dark-theme

/images/emacs-head-cocoa.png

Compilation options

The following compilation options are available:

OptionDescription
--with-crash-debugAppend `-g3` to CFLAGS to enable crash debugging
--with-cocoaBuild a cocoa version of GNU Emacs
--with-ctagsDon’t remove the ctags executable that GNU Emacs provides
--with-dbusBuild with dbus support
--without-gnutlsDisable gnutls support
--with-imagemagickBuild with imagemagick support
--without-librsvgDisable librsvg support
--with-mailutilsBuild with mailutils support
--with-multicolor-fontsEnable multicolor fonts support on macOS (only on emacs-head@26)
--without-modulesDisable dynamic modules support
--with-no-frame-refocusDisables frame re-focus (ie. closing one frame does not refocus another one). Not required in emacs-head@30
--without-libxml2Disable libxml2 support
--with-pdumperEnable pdumper support (not available on emacs-head@26)
--with-xwidgetsEnable xwidgets support (not available on emacs-head@26)
--with-native-compEnable elisp native compilation support (only on emacs-head@28, emacs-head@29 and emacs-head@30)
--with-native-full-aotEnable elisp ahead-of-time native compilation support (only on emacs-head@28, emacs-head@29 and emacs-head@30)
--with-tree-sitterEnable Tree-sitter support (only on emacs-head@29 and emacs-head@30)
--with-pollUse poll() instead of select() to support > 1024 file descriptors

For the terminal version only of GNU Emacs please omit --with-cocoa.

By default:

  • gnutls
  • librsvg
  • libxml2
  • dynamic modules

are enabled. If you want to disable them please use the above --without-* options.

System appearance change support

This patch is enabled by default and can’t be disabled. It adds a hook, ns-system-appearance-change-functions, that is called once the system appearance is changed. Functions added to this hook will be called with one argument, a symbol that is either light or dark. This mainly allows loading a different theme to better match the system appearance.

(defun my/apply-theme (appearance)
  "Load theme, taking current system APPEARANCE into consideration."
  (mapc #'disable-theme custom-enabled-themes)
  (pcase appearance
    ('light (load-theme 'tango t))
    ('dark (load-theme 'tango-dark t))))

(add-hook 'ns-system-appearance-change-functions #'my/apply-theme)

Note that this hook is also run once when Emacs is initialized, so simply adding the above to your init.el will allow matching the system appearance upon startup. You can also determine what the current system appearance is by inspecting the value of the ns-system-appearance variable.

The hook is NOT run in TTY Emacs sessions.

Pdumper support

Note: portable dumper is not supported on emacs-head@26, and won’t work with native-comp support.

To enable this feature please use --with-pdumper.

For a pdumper configuration example, you could take inspiration from Galactic Emacs: pdumper-init.el and pdumper-config.el configuration files.

Xwidgets support

Note: xwidgets feature is not supported on emacs-head@26.

This formula support native macOS X Cocoa Xwidgets via embedding a native webkit window. To enable this feature please use --with-xwidgets.

Native-comp support

Note: native-comp feature is not supported on emacs-head@26 and emacs-head@27.

This formula support native Elisp code compilation. In order to enable it please follow the below instructions:

brew install emacs-head@28 --with-cocoa --with-native-comp

NATIVE_FULL_AOT is disabled by default to improve build time. Only few lisp source files will be compiled during the build, all of the remaining ones will be dynamically compiled in the background once the Emacs application is launched for the first time. If you wish to enable native full AoT, please use --with-native-full-aot option together with --with-native-comp.

More details about native Elisp code compilation can be found in the below links:

Additional useful links:

Available icons

OptionDescriptionImageURL
--with-modern-icon-sjrmanningUse a modern style icon by Sjrmannings/icons/modern-icon-sjrmanning.pngLink
--with-modern-icon-asingh4242Use a modern style icon by Asingh4242/icons/modern-icon-asingh4242.pngLink
--with-modern-icon-paper-iconsUse a modern style icon by Sam Hewitt/icons/modern-icon-paper-icons.pngLink
--with-modern-icon-azhilinUse a modern style icon by Andrew Zhilin/icons/modern-icon-azhilin.pngLink
--with-modern-icon-mzaplotnikUse a modern style icon by Matjaz Zaplotnik/icons/modern-icon-mzaplotnik.pngLink
--with-modern-icon-bananxanUse a modern style icon by BananXan/icons/modern-icon-bananxan.pngLink
--with-modern-icon-vscodeUse a modern style icon by Valentin Degenne/icons/modern-icon-vscode.pngLink
--with-modern-icon-sexy-v1Use a modern style icon by Emacs is Sexy/icons/modern-icon-sexy-v1.pngLink
--with-modern-icon-sexy-v2Use a modern style icon by Emacs is Sexy/icons/modern-icon-sexy-v2.pngLink
--with-modern-icon-cg433nUse a modern style icon by Cg433n/icons/modern-icon-cg433n.pngLink
--with-modern-icon-purpleUse a modern style icon by Nicolas Petton/icons/modern-icon-purple.pngLink
--with-modern-icon-yellowUse a modern style icon by Unknown/icons/modern-icon-yellow.pngLink
--with-modern-icon-orangeUse a modern style icon by Omar Jair Purata Funes/icons/modern-icon-orange.pngLink
--with-modern-icon-papirusUse a modern style icon by Papirus Development Team/icons/modern-icon-papirus.pngLink
--with-modern-icon-penUse a modern style icon by Kentaro Ohkouchi/icons/modern-icon-pen.pngLink
--with-modern-icon-pen-3dUse a modern style icon by Unknown/icons/modern-icon-pen-3d.pngLink
--with-modern-icon-pen-lds56Use a modern style icon by lds56/icons/modern-icon-pen-lds56.pngLink
--with-modern-icon-pen-blackUse a modern style icon by Cayetano Santos/icons/modern-icon-pen-black.pngLink
--with-modern-icon-black-variantUse a modern style icon by BlackVariant (Patrick)/icons/modern-icon-black-variant.pngLink
--with-modern-icon-purple-flatUse a modern style icon by Jeremiah Foster/icons/modern-icon-purple-flat.pngLink
--with-modern-icon-spacemacsUse a modern style icon by Nasser Alshammari/icons/modern-icon-spacemacs.pngLink
--with-modern-icon-alecive-flatwokenUse a modern style icon by Alessandro Roncone/icons/modern-icon-alecive-flatwoken.pngLink
--with-modern-icon-elrumo1Use a modern style icon by Elias Ruiz Monserrat/icons/modern-icon-elrumo1.pngLink
--with-modern-icon-elrumo2Use a modern style icon by Elias Ruiz Monserrat/icons/modern-icon-elrumo2.pngLink
--with-modern-icon-savchenkovaleriy-vector-flatUse a modern Vector flat style icon by Valeriy Savchenko/icons/modern-icon-savchenkovaleriy-vector-flat.pngLink
--with-modern-icon-savchenkovaleriy-3d-flatUse a modern 3D flat style icon by Valeriy Savchenko/icons/modern-icon-savchenkovaleriy-3d-flat.pngLink
--with-modern-icon-savchenkovaleriy-3d-curvyUse a modern 3D curvy style icon by Valeriy Savchenko/icons/modern-icon-savchenkovaleriy-3d-curvy.pngLink
--with-modern-icon-bokehlicia-captivaUse a modern style icon by Bokehlicia/icons/modern-icon-bokehlicia-captiva.pngLink
--with-modern-icon-nuvolaUse a modern style icon by David Vignoni/icons/modern-icon-nuvola.pngLink
--with-modern-icon-black-gnu-headUse a modern style icon by Aha-Soft/icons/modern-icon-black-gnu-head.pngLink
--with-modern-icon-dragonUse a modern style icon by Will B Chang/icons/modern-icon-dragon.pngLink
--with-modern-icon-black-dragonUse a modern style icon by XYang and kongds/icons/modern-icon-black-dragon.pngLink
--with-modern-icon-emacs-icon1Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon1.pngLink
--with-modern-icon-emacs-icon2Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon2.pngLink
--with-modern-icon-emacs-icon3Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon3.pngLink
--with-modern-icon-emacs-icon4Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon4.pngLink
--with-modern-icon-emacs-icon5Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon5.pngLink
--with-modern-icon-emacs-icon6Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon6.pngLink
--with-modern-icon-emacs-icon7Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon7.pngLink
--with-modern-icon-emacs-icon8Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon8.pngLink
--with-modern-icon-emacs-icon9Use a modern style icon by Jasonm23/icons/modern-icon-emacs-icon9.pngLink
--with-modern-icon-emacs-card-blue-deepUse a modern style icon by Jasonm23/icons/modern-icon-emacs-card-blue-deep.pngLink
--with-modern-icon-emacs-card-british-racing-greenUse a modern style icon by Jasonm23/icons/modern-icon-emacs-card-british-racing-green.pngLink
--with-modern-icon-emacs-card-carmineUse a modern style icon by Jasonm23/icons/modern-icon-emacs-card-carmine.pngLink
--with-modern-icon-emacs-card-greenUse a modern style icon by Jasonm23/icons/modern-icon-emacs-card-green.pngLink
--with-modern-icon-doomUse a modern style icon by Eccentric J/icons/modern-icon-doom.pngLink
--with-modern-icon-doom3Use a modern style icon by Eccentric J/icons/modern-icon-doom3.pngLink
--with-modern-icon-doom-cacodemonUse a modern style icon by Christian Westrom/icons/modern-icon-doom-cacodemon.pngLink
--with-retro-icon-emacs-logoUse a retro style icon by Luis Fernandes/icons/retro-icon-emacs-logo.pngLink
--with-retro-icon-gnu-headUse a retro style icon by Aurélio A. Heckert/icons/retro-icon-gnu-head.pngLink
--with-retro-icon-gnu-meditate-levitateUse a retro style icon by Nevrax Design Team/icons/retro-icon-gnu-meditate-levitate.pngLink
--with-retro-icon-sink-bwUse a retro style icon by Unknown/icons/retro-icon-sink-bw.pngLink
--with-retro-icon-sinkUse a retro style icon by Erik Mugele/icons/retro-icon-sink.pngLink
--with-GoldenYakUse a Infinite Yak icon by Jasonm23/icons/GoldenYak.pngLink
--with-infinity-yak-adaciousUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-adacious.pngLink
--with-infinity-yak-akadabraUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-akadabra.pngLink
--with-infinity-yak-alakaUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-alaka.pngLink
--with-infinity-yak-amotoUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-amoto.pngLink
--with-infinity-yak-amuraUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-amura.pngLink
--with-infinity-yak-andwhiteUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-andwhite.pngLink
--with-infinity-yak-astraUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-astra.pngLink
--with-infinity-yak-noirUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-noir.pngLink
--with-infinity-yak-onfireUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-onfire.pngLink
--with-infinity-yak-onthewaterUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-onthewater.pngLink
--with-infinity-yak-satoriUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-satori.pngLink
--with-infinity-yak-shackUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-shack.pngLink
--with-infinity-yak-topiaUse a Infinite Yak icon by Jasonm23/icons/infinity-yak-topia.pngLink
--with-skamacs-iconUse a modern style icon by Compufox/icons/skamacs-icon.pngLink

Why yet another Homebrew GNU Emacs formula?

Since the option --with-cocoa is not available anymore in the latest GNU Emacs homebrew-core formula (see pull request), I decided to build my own formula.

About the logo

‘Kitchen Sink’ OS Announced

Coding has begun on a new operating system code named ‘Kitchen Sink’. The new OS will be based entirely on GNU Emacs. One programmer explained, “Since many hackers spend a vast amount of their time in Emacs, why not just make it the operating system?” When asked about the name, he responded, “Well, it has been often said that Emacs has everything except a kitchen sink. Now it will.” — James Baughn

(https://web.archive.org/web/20180814225320/http://humorix.org/10016)

Collaborating

If you are interested in collaborating please open a Pull Request.

homebrew-emacs-head's People

Contributors

anmoljagetia avatar bbenchen avatar blindingdark avatar d12frosted avatar daviderestivo avatar dependabot[bot] avatar divinedominion avatar jmckitrick avatar mpereira avatar mrunhap avatar ngquerol avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

homebrew-emacs-head's Issues

Python 3.7 dependency?

When I am trying to install this using brew install --ignore-dependencies emacs-head --HEAD --with-cocoa --with-imagemagick --with-jansson it complains that python is already installed. unfortunately for me, brew wants to upgrade to the latest 3.7 but i have been working on 3.6 and there are many issues to be worked out still before 3.7 can be considered ready. any way around this ?

│❯ brew install emacs-head --HEAD --with-cocoa --with-librsvg --with-imagemagick@7 --with-jansson --with-no-frame-refocus --with-mailutils --with-dbus --with-mo                                                                                                                                                             
│dules                                                                                                                                                                
│                                                                                                                                                                
│==> Installing emacs-head from daviderestivo/emacs-head                                                                                                                                                                
│==> Installing dependencies for daviderestivo/emacs-head/emacs-head: python, glib, pixman, cairo, gdk-pixbuf, libcroco, icu4c, harfbuzz, pango, librsvg, dbus,                                                                                                                                                                 
│gsasl, mailutils, x265, libomp, ilmbase, openexr and webp                                                                                                                                                                
│Error: python is already installed from !                                                                                                                                                                
│Please `brew uninstall python` first."                                                                                                                                                                
│───────────────────────────────────────────

Compilation Fails on M1 Mac

I am on an M1 MBP. The compiling process had succeeded before, however, the make procedure fails for now (maybe after the formula changed). The build succeeded with the newest formula on my Intel Macs, so this problem is likely to be M1-specific.

The brew command is: brew install emacs-head --HEAD --with-imagemagick --with-cocoa --with-xwidgets

The console log:

Updating Homebrew...
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
==> Updated Formulae
Updated 2 formulae.

==> Installing emacs-head@27 from daviderestivo/emacs-head
==> Downloading https://homebrew.bintray.com/bottles/cmake-3.20.1.arm64_big_sur.==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/b94fa9c13065ce3125962######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/e379edd1e9dac6165d24991b2484d114c2ca515bb27c5366da20b59164d73c61--0004-Xwidgets-webkit-in-cocoa-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/ea2b3af03b1cefe3a90fd00f5ce19130a8366d1b4892c3d68a902cda45255f62--0005-System-appearance-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/5114adbd047373538671aba91306c6726c556433f223df2af17bc7d7d79381a9--0007-Ligatures-freeze-fix-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/aa727383a475fe50cd4aa2fdcce43dc2ca41fdf5e3518a2171dbc236c2a1b9c7--0008-Fix-window-role.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/9aa035e80d3ab084120a4788c3ebbe29aab330a221dcbc92b8017a51c2ea5aa4--0001-No-frame-refocus-cocoa.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/48b7b584452aaa782a33329cf34cea430a07ab987d772eeb06900e0903f444b1--0003-Pdumper-size-increase.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/e379edd1e9dac6165d24991b2484d114c2ca515bb27c5366da20b59164d73c61--0004-Xwidgets-webkit-in-cocoa-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/ea2b3af03b1cefe3a90fd00f5ce19130a8366d1b4892c3d68a902cda45255f62--0005-System-appearance-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/5114adbd047373538671aba91306c6726c556433f223df2af17bc7d7d79381a9--0007-Ligatures-freeze-fix-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/aa727383a475fe50cd4aa2fdcce43dc2ca41fdf5e3518a2171dbc236c2a1b9c7--0008-Fix-window-role.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/e0553fb34297d5463c48861dcfd8cec493414b3b0d9403ea63d24f7f50d32b9b--0010-Arm.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/39d0fe298a426f0e8cde2cb6708c66c5f1bfbfbc3252830bf8cfa1cea516ac39--modern-icon-sjrmanning.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/c877a9e9414a3c6ebc1ed777f76113578b9dc9ff6faf6ab530bba2a58785d457--modern-icon-asingh4242.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/343e3f5094d0a762d783a49410810d104241ae842756399e202dbf00c1087ed6--modern-icon-paper-icons.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/97bcc6ed80cd2abe0e0494b549402b01c724f5c19e814814cd4364c23e48d9dc--modern-icon-azhilin.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/fbbaea5282b20d3da5b2b657cd7a2e51feb8c512d4b323ee5fd3fdb150227f23--modern-icon-mzaplotnik.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/3e94adecdb53e2b55f8aa000f1ee07037b8184cfc2d3a02e24514aecdd2e31c2--modern-icon-bananxan.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/58092241f466f380780d495922401e57e42f1bcf366a6284eded12f33c5b2a2e--modern-icon-vscode.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/c25a8c4e80563d8e11e4be87118e3923ae25654efe25b2e5dc4f4a7e301f3169--modern-icon-sexy-v1.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/eb68e5f126b77164faf3bb606c9f03198f3940c57e9791337368075ea97275cc--modern-icon-sexy-v2.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/dd4b6ae1b381a861af54d3c8a6acf46b8fadcb7f91f0644fea728dbc7b09a7a6--modern-icon-cg433n.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/4ab976c47b420e8de2d3ba39a0698db791b2f7a220495c2ac9295a83a66b56d4--modern-icon-purple.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/6263eff5a8e7abea09ad64a37a6c70fe704f9adf2638a7028bde43807e5dbee6--modern-icon-yellow.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/0b466a756efe093de549aa5be09885e5d93831289aca7837ec4998e5bc21d82a--modern-icon-orange.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/b0631e905c0a74dd97a8b89ffdab8a48d52b60b54d4aba74d5e20f97a22bcecc--modern-icon-papirus.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/11054112a8202dcb9c7354a96fece544781992fe48d264feeb9755ef68d6b306--modern-icon-pen.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/5de19dbeabaf9e983dd53845a6d42fad570bddb020684d5fe98b97820d74a183--modern-icon-pen-3d.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/c77337e4762d6cc15b868ba113e1d6638299b24b314428306155c6881ee9c779--modern-icon-pen-lds56.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/d3c8e46c2e9a0a575a1d54d6bbaac80ace4510d31a893e7c778faf036bb2fa38--modern-icon-pen-black.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/25a434cdb031d69bac634fc2c8c7199722d99c45d8fed7f8e2b552eb6e78644a--modern-icon-black-variant.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/7255e8dd88a5df2807ed4cf8850c95479b3bdab5bc1cac2bb21f1d43329f10da--modern-icon-purple-flat.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/3df79863c8943c90e4c089eef607ccc1bbc7fef3143450ba4c6179e92b53f3d4--modern-icon-spacemacs.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/8f9609e71af8cb913022b1bcb28dac0db9edeee72079f1a519174ea60ec3a38c--modern-icon-alecive-flatwoken.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/00821af1ff9fdc0b2dfe5ed5103e0017fe230ae395abdfe8e202d4f6b1564114--modern-icon-elrumo1.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/37419ae70a2c4e5d6d9bbad9ef79be30dc190fe1c7ab1c042c923ba0c8dc9091--modern-icon-elrumo2.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/519b8d66a63aad4320ce61c428be2fe6e3a7938185c18d1c45f8432514b7e9b8--modern-icon-bokehlicia-captiva.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/ad0987aea7f806ceddc46127d0ca7c5c3f4335c0518cb8c166c514d54f92715a--modern-icon-nuvola.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/b86eff55a067ce936b740b8ef557f6fae11b4998fc072f9deca895e35bdc6450--modern-icon-black-gnu-head.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/ac0148c1c70515224d5748914b255293f96a1497d7150b7705006c9f4134f67a--modern-icon-black-dragon.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/c64defa4b81d90e9ed0fd3f15d80d6e1e49b3cac0c5de72c9cbe7c12df8b6073--modern-icon-EmacsIcon1.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/50bb6e41b7926d0ddeca6574e352e7953fc1cc5afa8bfee332bea3785f4be61d--modern-icon-EmacsIcon2.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/d0de2cb84a004f80a5a9b91bdcd424dd17a9c4cb2bc0700c3b87d2025bd5e1d9--modern-icon-EmacsIcon3.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/34955ff22a82df7bbad3106fb0afbd27095285511059c2f28fea67dcb8d27755--modern-icon-EmacsIcon4.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/e7f852cfbcae69af8ba5d689022eb8ff5940dee856d340ec430a3a0788e6fa3e--modern-icon-EmacsIcon5.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/0d349b9b0320e8220002e92c616ddc159ff10ac6e4daf32e4acde65e77a19f04--modern-icon-EmacsIcon6.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/713789781c7fa008af9f9320ecb2c61f387ec1893e21afadd8f82073fcf93362--modern-icon-EmacsIcon7.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/977e9c79b3e3ce2b750b54aee07db58d0cc8e0fe8d9cfff379b4cc2e4c3d5eec--modern-icon-EmacsIcon8.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/a660c6100ace3343d89984040b47df048ef71c66f3631c056e6e3a784cb31c7e--modern-icon-EmacsIcon9.icns==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/aecb8bc82c34141abd1cb7020da86ba3ac59a99b58f5adfea67c3b5febae7f2a--modern-icon-emacs-card-blue-deep.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/2ccd6eba8873fe56038721feafc5383921b08e03b71fb2bc46ebc8549310565a--modern-icon-emacs-card-british-racing-green.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/858b6aac13c43939e3df25157cff4005594d328555af102d2bd8eb8f6234c87f--modern-icon-emacs-card-carmine.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/506d5435c70c47190a4eac36e8c790a1c30f74601cea200aa44fd59cbf5393ad--modern-icon-emacs-card-green.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/43596c24fa2ed159515321214da1391a523b4492d90a6aefdca8cab805ffdfdc--modern-icon-doom.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/4fd20512aab50bc68954c06bfa3b82f6d128c927d74b3a751dc4a0570d4c71d8--modern-icon-doom3.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/d77353ceea024ae4dfe4e4708c860aa4bc4de3cf98b4ea727cc5fe12c6717e65--modern-icon-doom-cacodemon.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/dc8221d1e425a535cb2b753e3bc684c44567ea4ae1d94f331efd8d6364f65907--retro-icon-emacs-logo.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/e82d6686127bddc6d9cd068ae33a4692d1124f7a79c7c69657707fdc1342def0--retro-icon-gnu-head.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/b4a2c99b5e1bc4f7df7937b6b171e4c234a4f069cc6cc8eff9841ee00e83db47--retro-icon-gnu-meditate-levitate.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/512332bcde569f5396f4d85806df9a23a0f10a21950aa131c7cd5ba5f3134b7d--retro-icon-sink-bw.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-hAlready downloaded: /Users/{username}/Library/Caches/Homebrew/downloads/ed73bc4a65ab25c086da0d5271d025a444b448505fbd1e739db6be58c372894d--retro-icon-sink.icns
==> Cloning https://github.com/emacs-mirror/emacs.git
Updating /Users/{username}/Library/Caches/Homebrew/emacs-head@27--git
==> Checking out branch emacs-27
Already on 'emacs-27'
Your branch is up to date with 'origin/emacs-27'.
HEAD is now at 2f5f306 Fix broken links in autorevert.el
==> Installing dependencies for daviderestivo/emacs-head/emacs-head@27: cmake
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: cmake
==> Pouring cmake-3.20.1.arm64_big_sur.bottle.tar.gz
==> Caveats
Emacs Lisp files have been installed to:
  /opt/homebrew/share/emacs/site-lisp/cmake
==> Summary
🍺  /opt/homebrew/Cellar/cmake/3.20.1: 6,468 files, 67.5MB
==> Installing daviderestivo/emacs-head/emacs-head@27 --HEAD --with-co
==> Patching
==> Applying 0004-Xwidgets-webkit-in-cocoa-27.patch
patching file configure.ac
Hunk #1 succeeded at 484 (offset -1 lines).
Hunk #2 succeeded at 2792 (offset 5 lines).
Hunk #3 succeeded at 5743 (offset -10 lines).
patching file lisp/xwidget.el
patching file nextstep/templates/Info.plist.in
patching file src/Makefile.in
Hunk #1 succeeded at 438 with fuzz 1 (offset 4 lines).
patching file src/emacs.c
Hunk #1 succeeded at 1883 (offset 31 lines).
Hunk #2 succeeded at 1959 (offset 31 lines).
patching file src/nsterm.m
Hunk #2 succeeded at 2433 (offset -174 lines).
Hunk #3 succeeded at 2442 (offset -174 lines).
Hunk #4 succeeded at 4251 with fuzz 1 (offset -106 lines).
Hunk #5 succeeded at 6955 (offset -102 lines).
Hunk #6 succeeded at 6998 (offset -102 lines).
patching file src/nsxwidget.h
patching file src/nsxwidget.m
patching file src/xwidget.c
Hunk #6 succeeded at 183 (offset 7 lines).
Hunk #7 succeeded at 221 (offset 7 lines).
Hunk #8 succeeded at 260 (offset 7 lines).
Hunk #9 succeeded at 276 (offset 7 lines).
Hunk #10 succeeded at 312 (offset 7 lines).
Hunk #11 succeeded at 543 (offset 7 lines).
Hunk #12 succeeded at 553 (offset 7 lines).
Hunk #13 succeeded at 567 (offset 7 lines).
Hunk #14 succeeded at 625 (offset 7 lines).
Hunk #15 succeeded at 641 (offset 7 lines).
Hunk #16 succeeded at 716 (offset 7 lines).
Hunk #17 succeeded at 734 (offset 7 lines).
Hunk #18 succeeded at 757 (offset 7 lines).
Hunk #19 succeeded at 826 (offset 7 lines).
Hunk #20 succeeded at 865 (offset 7 lines).
Hunk #21 succeeded at 909 (offset 7 lines).
Hunk #22 succeeded at 920 (offset 7 lines).
Hunk #23 succeeded at 931 (offset 7 lines).
Hunk #24 succeeded at 952 (offset 9 lines).
Hunk #25 succeeded at 961 (offset 9 lines).
Hunk #26 succeeded at 971 (offset 9 lines).
Hunk #27 succeeded at 997 (offset 9 lines).
Hunk #28 succeeded at 1080 (offset 9 lines).
Hunk #29 succeeded at 1198 (offset 9 lines).
Hunk #30 succeeded at 1372 (offset 9 lines).
Hunk #31 succeeded at 1401 (offset 9 lines).
Hunk #32 succeeded at 1434 (offset 9 lines).
Hunk #33 succeeded at 1448 (offset 9 lines).
patching file src/xwidget.h
==> Applying 0005-System-appearance-27.patch
patching file src/frame.h
patching file src/nsfns.m
patching file src/nsterm.m
Hunk #1 succeeded at 2030 (offset 3 lines).
Hunk #2 succeeded at 5613 (offset 28 lines).
Hunk #3 succeeded at 5859 (offset 28 lines).
Hunk #4 succeeded at 5909 (offset 28 lines).
Hunk #5 succeeded at 6136 (offset 28 lines).
Hunk #6 succeeded at 7622 (offset 27 lines).
Hunk #7 succeeded at 9751 (offset 27 lines).
==> Applying 0007-Ligatures-freeze-fix-27.patch
patching file src/composite.c
Hunk #1 succeeded at 1769 (offset 23 lines).
==> Applying 0008-Fix-window-role.patch
patching file src/nsterm.m
Hunk #1 succeeded at 8667 (offset -101 lines).
==> ImageMagick PKG_CONFIG_PATH: 
/opt/homebrew/opt/imagemagick/lib/pkgconfig
==> ./autogen.sh
==> ./configure --enable-locallisppath=/opt/homebrew/share/emacs/site-lisp --inf==> make
Last 15 lines from /Users/{username}/Library/Logs/Homebrew/emacs-head@27/03.make:
  CC       nsmenu.o
  CC       nsselect.o
  CC       nsimage.o
  CC       macfont.o
  CC       nsxwidget.o
  CC       terminfo.o
  CC       lastfile.o
  CCLD     temacs
.././build-aux/install-sh -c -d ../etc
/Library/Developer/CommandLineTools/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap
make[1]: *** [bootstrap-emacs.pdmp] Killed: 9
make: *** [src] Error 2

Do not report this issue to Homebrew/brew or Homebrew/core!

Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels.

Possible to add xwidgets as option?

Curious if we could add building with xwidgets as an option for all --HEAD builds. The current emacs-plus formula does this but for some reason when I build HEAD emacs from their formula, I don't have global-fill-column-display or access to the :extend keyword.

Also adding some cool icons would be awesome.

Compare to emacs-plus

Hi,

I'd like to know the differences between emacs-head and emacs-plus. I think many people are confused. Thanks!

error: Installed libgccjit has failed passing the smoke test.

Hi 👋 ,
First of all, many thanks for this repo and all the effort around it, I really appreciate it.

Just found an error reinstalling the formula in the Macos Big Sur with this command:

> brew reinstall emacs-head@28 --with-cocoa --with-no-frame-refocus --with-imagemagick --with-pdumper --with-xwidgets --with-native-comp --with-modern-icon-bokehlicia-captiva                        

The error seems related to the dependency libgccjit which breaks the installation process:

==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@28/28.0.50_1/share/info/emacs --prefix=/usr/local/Cellar/emacs-head@28/28.0.50_1 --without-x --withou
Last 15 lines from /Users/manute/Library/Logs/Homebrew/emacs-head@28/02.configure:
checking for lcms2... yes
checking for library containing inflateEnd... -lz
checking for dladdr... yes
checking for dlfunc... no
checking for gcc_jit_context_acquire in -lgccjit... yes
checking libgccjit.h usability... yes
checking libgccjit.h presence... yes
checking for libgccjit.h... yes
configure: error: Installed libgccjit has failed passing the smoke test.
You can verify it yourself compiling:
<https://gcc.gnu.org/onlinedocs/jit/intro/tutorial01.html>.
Please report the issue to your distribution if libgccjit was installed through
that.
Here instructions on how to compile and install libgccjit from source:
<https://gcc.gnu.org/wiki/JIT>.

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

Checking the libgccjit info :

> brew info libgccjit                                                                                                                                                                                
libgccjit: stable 10.2.0 (bottled), HEAD
JIT library for the GNU compiler collection
https://gcc.gnu.org/
/usr/local/Cellar/libgccjit/10.2.0_1 (14 files, 34.6MB) *
  Poured from bottle on 2021-03-06 at 20:18:57
From: https://github.com/Homebrew/homebrew-core/blob/HEAD/Formula/libgccjit.rb
License: GPL-3.0-or-later with GCC-exception-3.1
==> Dependencies
Required: gmp ✔, isl ✔, libmpc ✔, mpfr ✔
==> Options
--HEAD
	Install HEAD version
==> Analytics
install: 524 (30 days), 1,468 (90 days), 1,926 (365 days)
install-on-request: 280 (30 days), 993 (90 days), 1,448 (365 days)
build-error: 0 (30 days)

Any ideas?

Thanks

Emacs Sexy Icon V2 Checksum Mismatch

==> Verifying eb68e5f126b77164faf3bb606c9f03198f3940c57e9791337368075ea97275cc--modern-icon-sexy-v2.icns checksum
Error: An exception occurred within a child process:
  ChecksumMismatchError: SHA256 mismatch
Expected: 5ff87050e204af05287b3baf987cc0dc558e2166bd755dd7a50de04668fa95af
  Actual: ecdc902435a8852d47e2c682810146e81f5ad72ee3d0c373c936eb4c1e0966e6
 Archive: /Users/me/Library/Caches/Homebrew/downloads/eb68e5f126b77164faf3bb606c9f03198f3940c57e9791337368075ea97275cc--modern-icon-sexy-v2.icns
To retry an incomplete download, remove the file above.

Failed to initialize color list unarchiver

When I start Emacs from the terminal it prints:

2021-03-16 12:35:57.249 Emacs[74551:26050633] Failed to initialize color list unarchiver: Error Domain=NSCocoaErrorDomain Code=4864 "*** -[NSKeyedUnarchiver _initForReadingFromData:error:throwLegacyExceptions:]: non-keyed archive cannot be decoded by NSKeyedUnarchiver" UserInfo={NSDebugDescription=*** -[NSKeyedUnarchiver _initForReadingFromData:error:throwLegacyExceptions:]: non-keyed archive cannot be decoded by NSKeyedUnarchiver}

Emacs build with: brew install emacs-head@28 --with-cocoa --with-dbus --with-no-frame-refocus --with-imagemagick --with-pdumper --with-xwidgets.

Clean Emacs without extra packages.

`brew reinstall` cannot find Patch 6

When I brew reinstall emacs-head, this file cannot be found: 24ef63a1d5047e46f75610180361f7169f4679220bd8784d5c1bb4c5284eb4c1--0006-System-appearance.patch, relating to this file: https://github.com/daviderestivo/homebrew-emacs-head/blob/8ae40fdcba17d20db6e709726e082b80bad6836f/patches/0006-System-appearance.patch

I also tried with brew cleanup in between.

brew uninstall emacs-head and brew install emacs-head afterwards work fine:

$ brew uninstall emacs-head
Uninstalling /usr/local/Cellar/emacs-head/HEAD-f5672b2_1... (4,013 files, 130.8MB)

$ brew install emacs-head --HEAD --with-cocoa --with-dbus --with-imagemagick --with-mailutils --with-modern-icon-sexy-v1
...
==> Installing daviderestivo/emacs-head/emacs-head --HEAD --with-cocoa --with-dbus --with-imagemagick --with-mailutils --with-mod
==> Patching
==> Applying 0006-System-appearance.patch
patching file src/frame.h
patching file src/nsfns.m
patching file src/nsterm.m
Hunk #1 succeeded at 2215 (offset 13 lines).
Hunk #2 succeeded at 8380 (offset -2 lines).
Hunk #3 succeeded at 9047 (offset -2 lines).
Hunk #4 succeeded at 9925 (offset -2 lines).
...

It's just the reinstall that cannot locate the patch.

Log output of reinstall

$ brew tap daviderestivo/emacs-head
==> Unshallowing daviderestivo/emacs-head
remote: Enumerating objects: 223, done.
remote: Counting objects: 100% (223/223), done.
remote: Compressing objects: 100% (62/62), done.
remote: Total 209 (delta 118), reused 203 (delta 112), pack-reused 0
Receiving objects: 100% (209/209), 46.50 KiB | 534.00 KiB/s, done.
Resolving deltas: 100% (118/118), completed with 4 local objects.

$ brew reinstall emacs-head --with-cocoa --with-dbus --with-imagemagick --with-mailutils --with-modern-icon-sexy-v1
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-cg433n.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/dd4b6ae1b381a861af54d3c8a6acf46b8fadcb7f91f0644fea728dbc7b09a7a6--modern-icon-cg433n.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-sjrmanning.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/39d0fe298a426f0e8cde2cb6708c66c5f1bfbfbc3252830bf8cfa1cea516ac39--modern-icon-sjrmanning.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-sexy-v1.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/c25a8c4e80563d8e11e4be87118e3923ae25654efe25b2e5dc4f4a7e301f3169--modern-icon-sexy-v1.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-sexy-v2.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/eb68e5f126b77164faf3bb606c9f03198f3940c57e9791337368075ea97275cc--modern-icon-sexy-v2.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-papirus.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/b0631e905c0a74dd97a8b89ffdab8a48d52b60b54d4aba74d5e20f97a22bcecc--modern-icon-papirus.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-pen.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/11054112a8202dcb9c7354a96fece544781992fe48d264feeb9755ef68d6b306--modern-icon-pen.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-nuvola.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/ad0987aea7f806ceddc46127d0ca7c5c3f4335c0518cb8c166c514d54f92715a--modern-icon-nuvola.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-black-variant.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/25a434cdb031d69bac634fc2c8c7199722d99c45d8fed7f8e2b552eb6e78644a--modern-icon-black-variant.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/retro-icon-gnu-head.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/e82d6686127bddc6d9cd068ae33a4692d1124f7a79c7c69657707fdc1342def0--retro-icon-gnu-head.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/retro-icon-sink-bw.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/512332bcde569f5396f4d85806df9a23a0f10a21950aa131c7cd5ba5f3134b7d--retro-icon-sink-bw.icns
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/retro-icon-sink.icns
Already downloaded: /Users/ctm/Library/Caches/Homebrew/downloads/ed73bc4a65ab25c086da0d5271d025a444b448505fbd1e739db6be58c372894d--retro-icon-sink.icns
==> Cloning https://github.com/emacs-mirror/emacs.git
Updating /Users/ctm/Library/Caches/Homebrew/emacs-head--git
==> Checking out branch master
Already on 'master'
Your branch is up to date with 'origin/master'.
HEAD is now at 9f7bfb6 Port struct Lisp_FLoat to oddball platforms
==> Reinstalling daviderestivo/emacs-head/emacs-head --with-cocoa --with-dbus --with-imagemagick --with-mailutils --with-modern-i
==> Patching
Error: An exception occurred within a child process:
  Errno::ENOENT: No such file or directory @ rb_sysopen - /Users/ctm/Library/Caches/Homebrew/downloads/24ef63a1d5047e46f75610180361f7169f4679220bd8784d5c1bb4c5284eb4c1--0006-System-appearance.patch

Cannot install with --with-modern-icon-doom3

When I try to install the latest emacs 28 I get this error:

Installation begins correcty:

brew install emacs-head@28 --with-crash-debug --with-cocoa --with-ctags --with-dbus --with-imagemagick --with-mailutils --with-pdumper --with-xwidgets --with-native-comp --with-native-full-aot --with-modern-icon-doom3

....
a lot of staff 
....

==> ImageMagick PKG_CONFIG_PATH:
/usr/local/opt/imagemagick/lib/pkgconfig
==> GNU Emacs crash debug enabled. Appending `-g3` to CFLAGS...
==> ./autogen.sh
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@28/28.0.50_1/share/info/emacs --prefix=/usr/local/Cellar/emacs-head@28/28.0.50_1 --without-x --with-dbus --with-native-c
==> make NATIVE_FULL_AOT=1 BYTE_COMPILE_EXTRA_FLAGS=--eval '(setq comp-speed 2)'
Error: An exception occurred within a child process:
  ResourceMissingError: daviderestivo/emacs-head/emacs-head@28 does not define resource "modern-icon-doom3"

So I cannot use this icons

Add sRGB support

Looking at sRGB build of emacs. I was looking through your formula but couldn't find anything to do with --srgb. Is this still possible with emacs 27 and if it will be possible to add this to the formula?

Edit: I tried to hack the --srgb option into the formula when using. But I am getting configure: error: unrecognized option: --srgb. This probably mean configure script doesn't support it anymore in which case how does one get the --srgb support back. Any ideas?

Remove bottles support

Since I think not to many people are using emacs-head bottles and since it is a big effort to maintain them I decided to drop any bottle support with this #95.

I will merge #95 in the upcoming days. Any comment is welcome.

New emacs-28 formula causes security software to flag stack pivots from Ruby.

This might not be fixable, but my work computer runs CYLANCE Protect and now reports a ruby coroutine as a "Stack Pivot vulnerability" during the build process and halts the build process. I was able to successfully build using the emacs@27 --HEAD formula.

It's pretty well know that CYLANCE will randomly do this on all sorts of safe software installs, so I'm not sure if it's something that can be directly changed in formula. Although, it is strange that it works for 27.

Here is the traceback from the build:

Traceback (most recent call last):
	19: from /usr/local/Homebrew/Library/Homebrew/brew.rb:110:in `<main>'
	18: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:259:in `install'
	17: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:259:in `each'
	16: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:261:in `block in install'
	15: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:330:in `install_formula'
	14: from /usr/local/Homebrew/Library/Homebrew/formula_installer.rb:331:in `install'
	13: from /usr/local/Homebrew/Library/Homebrew/formula_installer.rb:777:in `build'
	12: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:32:in `safe_fork'
	11: from /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3_2/lib/ruby/2.6.0/tmpdir.rb:93:in `mktmpdir'
	10: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:33:in `block in safe_fork'
	 9: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:33:in `open'
	 8: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:36:in `block (2 levels) in safe_fork'
	 7: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:36:in `fork'
	 6: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:41:in `block (3 levels) in safe_fork'
	 5: from /usr/local/Homebrew/Library/Homebrew/formula_installer.rb:789:in `block in build'
	 4: from /usr/local/Homebrew/Library/Homebrew/sandbox.rb:88:in `exec'
	 3: from /usr/local/Homebrew/Library/Homebrew/utils.rb:263:in `safe_system'
	 2: from /usr/local/Homebrew/Library/Homebrew/utils.rb:41:in `system'
	 1: from /usr/local/Homebrew/Library/Homebrew/utils.rb:32:in `_system'
/usr/local/Homebrew/Library/Homebrew/utils.rb:32:in `wait': SIGTERM (SignalException)
	16: from /usr/local/Homebrew/Library/Homebrew/brew.rb:110:in `<main>'
	15: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:259:in `install'
	14: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:259:in `each'
	13: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:261:in `block in install'
	12: from /usr/local/Homebrew/Library/Homebrew/cmd/install.rb:330:in `install_formula'
	11: from /usr/local/Homebrew/Library/Homebrew/formula_installer.rb:331:in `install'
	10: from /usr/local/Homebrew/Library/Homebrew/formula_installer.rb:777:in `build'
	 9: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:32:in `safe_fork'
	 8: from /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3_2/lib/ruby/2.6.0/tmpdir.rb:93:in `mktmpdir'
	 7: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:33:in `block in safe_fork'
	 6: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:33:in `open'
	 5: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:36:in `block (2 levels) in safe_fork'
	 4: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:36:in `fork'
	 3: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:37:in `block (3 levels) in safe_fork'
	 2: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:54:in `rescue in block (3 levels) in safe_fork'
	 1: from /usr/local/Homebrew/Library/Homebrew/utils/fork.rb:54:in `puts'
/usr/local/Homebrew/Library/Homebrew/utils/fork.rb:54:in `write': Broken pipe (Errno::EPIPE)
Traceback (most recent call last):
	24: from /usr/local/Homebrew/Library/Homebrew/build.rb:202:in `<main>'
	23: from /usr/local/Homebrew/Library/Homebrew/build.rb:118:in `install'
	22: from /usr/local/Homebrew/Library/Homebrew/utils.rb:474:in `with_env'
	21: from /usr/local/Homebrew/Library/Homebrew/build.rb:123:in `block in install'
	20: from /usr/local/Homebrew/Library/Homebrew/formula.rb:1166:in `brew'
	19: from /usr/local/Homebrew/Library/Homebrew/formula.rb:2130:in `stage'
	18: from /usr/local/Homebrew/Library/Homebrew/vendor/portable-ruby/2.6.3_2/lib/ruby/2.6.0/forwardable.rb:230:in `stage'
	17: from /usr/local/Homebrew/Library/Homebrew/resource.rb:81:in `stage'
	16: from /usr/local/Homebrew/Library/Homebrew/resource.rb:106:in `unpack'
	15: from /usr/local/Homebrew/Library/Homebrew/resource.rb:196:in `mktemp'
	14: from /usr/local/Homebrew/Library/Homebrew/mktemp.rb:57:in `run'
	13: from /usr/local/Homebrew/Library/Homebrew/mktemp.rb:57:in `chdir'
	12: from /usr/local/Homebrew/Library/Homebrew/mktemp.rb:57:in `block in run'
	11: from /usr/local/Homebrew/Library/Homebrew/resource.rb:197:in `block in mktemp'
	10: from /usr/local/Homebrew/Library/Homebrew/resource.rb:111:in `block in unpack'
	 9: from /usr/local/Homebrew/Library/Homebrew/formula.rb:2154:in `block in stage'
	 8: from /usr/local/Homebrew/Library/Homebrew/utils.rb:474:in `with_env'
	 7: from /usr/local/Homebrew/Library/Homebrew/formula.rb:2155:in `block (2 levels) in stage'
	 6: from /usr/local/Homebrew/Library/Homebrew/formula.rb:1173:in `block in brew'
	 5: from /usr/local/Homebrew/Library/Homebrew/build.rb:152:in `block (2 levels) in install'
	 4: from /usr/local/Homebrew/Library/Taps/daviderestivo/homebrew-emacs-head/Formula/[email protected]:261:in `install'
	 3: from /usr/local/Homebrew/Library/Homebrew/formula.rb:1951:in `system'
	 2: from /usr/local/Homebrew/Library/Homebrew/formula.rb:1951:in `open'
	 1: from /usr/local/Homebrew/Library/Homebrew/formula.rb:1990:in `block in system'
/usr/local/Homebrew/Library/Homebrew/formula.rb:1990:in `wait': SIGTERM (SignalException)
	2: from /usr/local/Homebrew/Library/Homebrew/build.rb:192:in `<main>'
	1: from /usr/local/Homebrew/Library/Homebrew/build.rb:222:in `rescue in <main>'

Like I said, not sure if there is anything we can do. Just thought I'd let you know in-case other users run into this problem.

A doubt with --gnu-tls option

First of all thanks for this, you literally save my life working with mac ;-)

I cannot see the old gnu-tls option. It is not needed for emacs 27.x (HEAD).

I need de gnu-tls dependency in order to import some packages from repositories with cask. but it seems to work well after installation

ELISP> (gnutls-available-p)
(ClientHello\ Padding Key\ Share Post\ Handshake\ Auth PSK\ Key\ Exchange\ Modes Cookie Supported\ Versions Early\ Data Pre\ Shared\ Key Session\ Ticket Record\ Size\ Limit Extended\ Master\ Secret Encrypt-then-MAC ClientHello\ Padding Server\ Certificate\ Type Client\ Certificate\ Type ALPN SRTP Signature\ Algorithms SRP Supported\ EC\ Point\ Formats Supported\ Groups OCSP\ Status\ Request Maximum\ Record\ Size Server\ Name\ Indication macs AEAD-ciphers ciphers digests gnutls3 gnutls)

Misnamed icon options

The icon options like with-modern-icon-emacs-icon4 should be named with-modern-emacs-icon4 and this seems to apply to 1-9.

Error installing emacs 27 & 28 on Catalina

I installed emacs 28 successfully and was able to run it. This morning when I tried to open email, I got an error message so I tried to reinstall but now getting the following message:

Last 15 lines from /Users/homemac/Library/Logs/Homebrew/emacs-head@28/03.make:
  CC       nsmenu.o
  CC       nsselect.o
  CC       nsimage.o
  CC       macfont.o
  CC       terminfo.o
  CC       lastfile.o
  CCLD     temacs
../build-aux/install-sh -c -d ../etc
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap
make[1]: *** [bootstrap-emacs.pdmp] Segmentation fault: 11
make: *** [src] Error 2
make: *** Waiting for unfinished jobs....

Compilation fails on MacOS 11.3.1 (20E241)

Hi,

When installing on MacOS 11.3.1 M1 with

brew install emacs-head --with-imagemagick --with-cocoa --with-xwidgets

I get the following error:

==> ./autogen.sh
==> ./configure --enable-locallisppath=/opt/homebrew/share/emacs/site-lisp --infodir=/opt/homebrew/Cellar/emacs-head@27/27.2_1/share/in
==> make
Last 15 lines from /Users/ari/Library/Logs/Homebrew/emacs-head@27/03.make:
  CC       macfont.o
  CC       nsimage.o
  CC       nsxwidget.o
  CC       terminfo.o
  CC       lastfile.o
  CCLD     temacs
codesign -s - -f temacs.tmp
temacs.tmp: replacing existing signature
.././build-aux/install-sh -c -d ../etc
/Volumes/ARSCA-HFS1/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap
make[1]: *** [bootstrap-emacs.pdmp] Killed: 9
make: *** [src] Error 2
Do not report this issue to Homebrew/brew or Homebrew/core!

Not all icons work for 28

I’ve been trying different icons, and I’ve noticed some do not work. The most recent is modern-icon-orange. Oddly enough, the file ends up in the version 27 build folders, but not in 28, and I end up with the same icon I built with before.

Aside from this issue, is there an easier way to swap icons rather than a complete brew uninstall and install with the new icon? It takes 10 minutes to build and try an icon, so I haven’t had time to try others yet.

Current build fails

I tried I build this morning, and got this:

Last 15 lines from /Users/jmckitrick/Library/Logs/Homebrew/emacs-head@28/03.make:
  GEN      ../../info/ses.info
  GEN      ../../info/sieve.info
  GEN      ../../info/smtpmail.info
  GEN      ../../info/speedbar.info
  GEN      ../../info/srecode.info
  GEN      ../../info/todo-mode.info
  GEN      ../../info/tramp.info
  GEN      ../../info/url.info
  GEN      ../../info/vhdl-mode.info
  GEN      ../../info/vip.info
  GEN      ../../info/viper.info
  GEN      ../../info/widget.info
  GEN      ../../info/wisent.info
  GEN      ../../info/woman.info
  GEN      ../../info/efaq-w32.info

If reporting this issue please do so to (not Homebrew/brew or Homebrew/core):
daviderestivo/emacs-head

emacs-head@28 --with-cocoa --with-native-comp fails on startup

I recently tried to upgrade emacs and it now fails on startup with the following error message:

~ /usr/local/opt/emacs-head@28/bin/emacs emacs: can't find function "F6d656e752d6261722d7570646174652d62756666657273_menu_bar_update_buffers_0" in compilation unit /usr/local/Cellar/emacs-head@28/28.0.50_1/libexec/emacs/28.0.50/x86_64-apple-darwin20.6.0/../../../../bin/../lib/emacs/28.0.50/native-lisp/28.0.50-50ea073b/preloaded/menu-bar-4f46ea94-7781c24c.eln

Building without --with-native-comp seems to work fine. Native compilation has worked fine earlier, so seems like something recent.

Head doesn't compile on macOS Catalina

$ brew install emacs-head --HEAD --with-cocoa --with-imagemagick --with-jansson
==> Installing emacs-head from daviderestivo/emacs-head
==> Cloning https://github.com/emacs-mirror/emacs.git
Updating /Users/ben/Library/Caches/Homebrew/emacs-head--git
==> Checking out branch master
Already on 'master'
Your branch is up to date with 'origin/master'.
HEAD is now at 5c890bf Merge from origin/emacs-27
==> ImageMagick PKG_CONFIG_PATH:
/usr/local/opt/imagemagick/lib/pkgconfig
==> ./autogen.sh
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head/HEAD-5c890bf_1/share/info/emacs --prefix=/usr/lo
==> make
Last 15 lines from /Users/ben/Library/Logs/Homebrew/emacs-head/03.make:
  CC       nsselect.o
  CC       nsimage.o
  CC       macfont.o
  CC       terminfo.o
  CC       lastfile.o
  CCLD     temacs
Undefined symbols for architecture x86_64:
  "_DEC_BOTH", referenced from:
      _Fwindow_text_pixel_size in xdisp.o
  "_FETCH_CHAR_ADVANCE", referenced from:
      _Fwindow_text_pixel_size in xdisp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[1]: *** [temacs] Error 1
make: *** [src] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

Please create pull requests instead of asking for help on Homebrew's GitHub,
Discourse, Twitter or IRC.

Native comp on Emacs 29 does not seem to work

I realize this could be user error, but in the interest of helping other users, I'd like to figure out what is going wrong, and contribute to improvements in the formula or the docs.

I build this formula once a week, and decided to try native comp for the first time. Everything seems fine until it loads, then the frame fills with error messages from libgccjit failures. I have a feeling it's a missing dependency, but I thought I got everything that was required. I'd like to figure out what I missed, and help document the issue for anyone else trying the same feature. I have gcc and libgccjit installed, so....

Here are the first few error messages:

Warning (initialization): An error occurred while loading ‘/Users/jmckitrick/.emacs.d/init.el’:

Native compiler error: (lambda (arg1 &optional) (let ((f #'yes-or-no-p)) (funcall f arg1))), Compiling /Users/jmckitrick/.emacs.d/eln-cache/28.0.60-3d05cc13/subr--trampoline-7965732d6f722d6e6f2d70_yes_or_no_p_0.eln...
ld: library not found for -lgcc_ext.10.5
libgccjit.so: error: error invoking gcc driver
Debugger entered--Lisp error: (native-ice "failed to compile" "/Users/jmckitrick/.emacs.d/eln-cache/28.0.60-3d05c..." "error invoking gcc driver")
  comp--compile-ctxt-to-file("/Users/jmckitrick/.emacs.d/eln-cache/28.0.60-3d05c...")
  comp-compile-ctxt-to-file("/Users/jmckitrick/.emacs.d/eln-cache/28.0.60-3d05c...")
  comp-final1()
  load-with-code-conversion("/private/var/folders/27/xs02f08d325_q2vh49wks48r00..." "/private/var/folders/27/xs02f08d325_q2vh49wks48r00..." nil t)
  command-line-1(("-l" "/var/folders/27/xs02f08d325_q2vh49wks48r0000gn/T/e..."))
  command-line()
  normal-top-level()

Warning (comp): libgccjit.so: error: error invoking gcc driver Disable showing Disable logging
Warning (comp): /usr/local/Cellar/emacs-head@28/28.0.50_1/share/emacs/28.0.60/lisp/url/url-vars.el.gz: Error: Internal native compiler error failed to compile Disable showing Disable logging
Warning (comp): libgccjit.so: error: error invoking gcc driver Disable showing Disable logging
Warning (comp): /usr/local/Cellar/emacs-head@28/28.0.50_1/share/emacs/28.0.60/lisp/password-cache.el.gz: Error: Internal native compiler error failed to compile Disable showing Disable logging

Possible to support 27 branch?

I would like to install Emacs 27 with a --devel flag, but not Emacs 28 with --head. How much work would it be to add such a flag? I guess the same config parameters that --head accepts should work with --devel.

Emacs 28 fails to build on High Sierra (macOS 10.13 - xcode10.1)

Emacs 28 fails to build on High Sierra with the following options:

BUILD_OPTIONS="--verbose Formula/[email protected] --with-cocoa --with-no-frame-refocus --with-imagemagick --with-jansson --with-xwidgets"
  GEN      ../../info/todo-mode.info
  CC       nsimage.o
  GEN      ../../info/tramp.info
  CC       macfont.o
  CC       nsxwidget.o
  GEN      ../../info/url.info
  GEN      ../../info/vhdl-mode.info
  CC       terminfo.o
  CC       lastfile.o
  CCLD     temacs
  GEN      ../../info/vip.info
../build-aux/install-sh -c -d ../etc
/Applications/Xcode-10.1.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap
make[1]: *** [bootstrap-emacs.pdmp] Segmentation fault: 11
make: *** [src] Error 2
make: *** Waiting for unfinished jobs....
  GEN      info/dir
  GEN      ../../info/viper.info
  GEN      ../../info/widget.info
  GEN      ../../info/wisent.info
  GEN      ../../info/woman.info
  GEN      ../../info/efaq-w32.info

After installing the latest master branch, it crashes when run

crash message:

Process:               Emacs [27438]
Path:                  /Applications/Emacs.app/Contents/MacOS/Emacs
Identifier:            org.gnu.Emacs
Version:               Version 29.0.50 (9.0)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Emacs [27438]
User ID:               501

Date/Time:             2021-10-13 09:44:37.247 +0800
OS Version:            macOS 11.6 (20G165)
Report Version:        12
Bridge OS Version:     5.5 (18P4759a)
Anonymous UUID:        3EA1D0B7-F2D9-8D1E-55F5-2CE8BF3C1CEC

Sleep/Wake UUID:       EDA7BDFA-8939-4DDD-8530-A947F99E600B

Time Awake Since Boot: 540000 seconds
Time Since Wake:       3900 seconds

System Integrity Protection: disabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib        	0x00007fff202e492e __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff203135bd pthread_kill + 263
2   libsystem_c.dylib             	0x00007fff201f7bd5 raise + 26
3   org.gnu.Emacs                 	0x000000010e69c898 terminate_due_to_signal + 167
4   org.gnu.Emacs                 	0x000000010e69cda1 emacs_abort + 15
5   org.gnu.Emacs                 	0x000000010e6790b3 ns_term_shutdown + 119
6   org.gnu.Emacs                 	0x000000010e57a553 shut_down_emacs + 339
7   org.gnu.Emacs                 	0x000000010e69c866 terminate_due_to_signal + 117
8   org.gnu.Emacs                 	0x000000010e59388e handle_fatal_signal + 14
9   org.gnu.Emacs                 	0x000000010e593900 deliver_thread_signal + 114
10  org.gnu.Emacs                 	0x000000010e593838 deliver_fatal_thread_signal + 9
11  libsystem_platform.dylib      	0x00007fff20358d7d _sigtramp + 29
12  dyld                          	0x000000011658b54b dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 86
13  libsystem_c.dylib             	0x00007fff20268406 abort + 125
14  org.gnu.Emacs                 	0x000000010e5c2d31 re_match_2_internal + 17384
15  org.gnu.Emacs                 	0x000000010e5be6fd rpl_re_search_2 + 2681
16  org.gnu.Emacs                 	0x000000010e5c3632 rpl_re_search + 37
17  org.gnu.Emacs                 	0x000000010e5b7f48 string_match_1 + 434
18  org.gnu.Emacs                 	0x000000010e62556a Fcomp_el_to_eln_rel_filename + 506
19  org.gnu.Emacs                 	0x000000010e60bb5f maybe_swap_for_eln + 257
20  org.gnu.Emacs                 	0x000000010e60aae0 openp + 2575
21  org.gnu.Emacs                 	0x000000010e60972e Fload + 420
22  org.gnu.Emacs                 	0x000000010e60e1c2 save_match_data_load + 100
23  org.gnu.Emacs                 	0x000000010e5f4f8f Frequire + 529
24  org.gnu.Emacs                 	0x000000010e5ebec8 funcall_subr + 265
25  org.gnu.Emacs                 	0x000000010e5eba60 Ffuncall + 553
26  org.gnu.Emacs                 	0x000000010e622e9c exec_byte_code + 1502
27  org.gnu.Emacs                 	0x000000010e5e8ae6 eval_sub + 1325
28  org.gnu.Emacs                 	0x000000010e5eafe1 Feval + 102
29  magit-autorevert-d4584dd6-f00f2224.eln	0x0000000166cb23ad top_level_run + 397
30  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
31  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
32  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
33  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
34  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
35  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
36  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
37  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
38  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
39  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
40  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
41  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
42  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
43  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
44  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
45  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
46  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
47  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
48  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
49  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
50  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
51  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
52  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
53  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
54  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
55  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
56  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
57  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
58  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
59  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
60  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
61  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
62  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
63  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
64  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
65  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
66  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
67  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
68  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
69  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
70  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
71  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
72  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
73  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
74  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
75  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
76  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
77  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
78  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
79  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
80  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
81  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
82  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
83  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
84  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
85  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
86  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
87  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
88  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
89  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
90  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
91  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
92  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
93  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
94  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
95  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
96  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
97  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
98  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
99  org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
100 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
101 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
102 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
103 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
104 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
105 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
106 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
107 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
108 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
109 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
110 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
111 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
112 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
113 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
114 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
115 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
116 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
117 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
118 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
119 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
120 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
121 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
122 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
123 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
124 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
125 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
126 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
127 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
128 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
129 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
130 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
131 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
132 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
133 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
134 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
135 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
136 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
137 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
138 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
139 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
140 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
141 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
142 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
143 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
144 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
145 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
146 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
147 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
148 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
149 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
150 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
151 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
152 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
153 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
154 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
155 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
156 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
157 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
158 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
159 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
160 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
161 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
162 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
163 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
164 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
165 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
166 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
167 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
168 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
169 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
170 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
171 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
172 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
173 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
174 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
175 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
176 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
177 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
178 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
179 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
180 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
181 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
182 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
183 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
184 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
185 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
186 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
187 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
188 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
189 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
190 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
191 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
192 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
193 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
194 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
195 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
196 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
197 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
198 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
199 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
200 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
201 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
202 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
203 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
204 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
205 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
206 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
207 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
208 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
209 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
210 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
211 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
212 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
213 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
214 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
215 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
216 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
217 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
218 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
219 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
220 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
221 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
222 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
223 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
224 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
225 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
226 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
227 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
228 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
229 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
230 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
231 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
232 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
233 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
234 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
235 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
236 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
237 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
238 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
239 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
240 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
241 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
242 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
243 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
244 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
245 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
246 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
247 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
248 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
249 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
250 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
251 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
252 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
253 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
254 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
255 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
256 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
257 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
258 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
259 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
260 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
261 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
262 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
263 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
264 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
265 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
266 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
267 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
268 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
269 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
270 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
271 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
272 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
273 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
274 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
275 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
276 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
277 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
278 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
279 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
280 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
281 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
282 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
283 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
284 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
285 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
286 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
287 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
288 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
289 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
290 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
291 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
292 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
293 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
294 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
295 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
296 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
297 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
298 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
299 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
300 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
301 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
302 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
303 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
304 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
305 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
306 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
307 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
308 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
309 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
310 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
311 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
312 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
313 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
314 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
315 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
316 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
317 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
318 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
319 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
320 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
321 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
322 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
323 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
324 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
325 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
326 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
327 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
328 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
329 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
330 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
331 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
332 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
333 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
334 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
335 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
336 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
337 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
338 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
339 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
340 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
341 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
342 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
343 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
344 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
345 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
346 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
347 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
348 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
349 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
350 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
351 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
352 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
353 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
354 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
355 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
356 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
357 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
358 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
359 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
360 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
361 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
362 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
363 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
364 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
365 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
366 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
367 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
368 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
369 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
370 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
371 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
372 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
373 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
374 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
375 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
376 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
377 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
378 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
379 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
380 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
381 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
382 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
383 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
384 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
385 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
386 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
387 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
388 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
389 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
390 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
391 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
392 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
393 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
394 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
395 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
396 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
397 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
398 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
399 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
400 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
401 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
402 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
403 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
404 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
405 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
406 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
407 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
408 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
409 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
410 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
411 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
412 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
413 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
414 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
415 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
416 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
417 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
418 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
419 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
420 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
421 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
422 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
423 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
424 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
425 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
426 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
427 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
428 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
429 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
430 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
431 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
432 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
433 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
434 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
435 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
436 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
437 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
438 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
439 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
440 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
441 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
442 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
443 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
444 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
445 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
446 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
447 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
448 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
449 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
450 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
451 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
452 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
453 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
454 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
455 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
456 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
457 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
458 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
459 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
460 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
461 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
462 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
463 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
464 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
465 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
466 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
467 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
468 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
469 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
470 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
471 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
472 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
473 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
474 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
475 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
476 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
477 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
478 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
479 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
480 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
481 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
482 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
483 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
484 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
485 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
486 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
487 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
488 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
489 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
490 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
491 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
492 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
493 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
494 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
495 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
496 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
497 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
498 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
499 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
500 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
501 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
502 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
503 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
504 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
505 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
506 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
507 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
508 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
509 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
510 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752
511 org.gnu.Emacs                 	0x000000010e62ab75 load_comp_unit + 752

Thread 1:
0   libsystem_pthread.dylib       	0x00007fff2030f420 start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff2030f420 start_wqthread + 0

Thread 3:: gmain
0   libsystem_kernel.dylib        	0x00007fff202e49ca poll + 10
1   libglib-2.0.0.dylib           	0x0000000110433dd1 g_main_context_iterate + 433
2   libglib-2.0.0.dylib           	0x0000000110433ed6 g_main_context_iteration + 102
3   libglib-2.0.0.dylib           	0x0000000110435fb1 glib_worker_main + 33
4   libglib-2.0.0.dylib           	0x00000001104619d2 g_thread_proxy + 66
5   libsystem_pthread.dylib       	0x00007fff203138fc _pthread_start + 224
6   libsystem_pthread.dylib       	0x00007fff2030f443 thread_start + 15

Thread 4:
0   libsystem_pthread.dylib       	0x00007fff2030f420 start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	0x00007fff2030f420 start_wqthread + 0

Thread 6:
0   libsystem_kernel.dylib        	0x00007fff202e6656 __select + 10
1   org.gnu.Emacs                 	0x000000010e666e8f -[EmacsApp fd_handler:] + 198
2   com.apple.Foundation          	0x00007fff21193437 __NSThread__start__ + 1068
3   libsystem_pthread.dylib       	0x00007fff203138fc _pthread_start + 224
4   libsystem_pthread.dylib       	0x00007fff2030f443 thread_start + 15

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff2030f420 start_wqthread + 0

Thread 8:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff202de2ba mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff202de62c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff2040b49f __CFRunLoopServiceMachPort + 316
3   com.apple.CoreFoundation      	0x00007fff20409b7f __CFRunLoopRun + 1328
4   com.apple.CoreFoundation      	0x00007fff20408f8c CFRunLoopRunSpecific + 563
5   com.apple.AppKit              	0x00007fff22d9823a _NSEventThread + 124
6   libsystem_pthread.dylib       	0x00007fff203138fc _pthread_start + 224
7   libsystem_pthread.dylib       	0x00007fff2030f443 thread_start + 15

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000000011665de00  rcx: 0x00007ffee1729b28  rdx: 0x0000000000000000
  rdi: 0x0000000000000103  rsi: 0x0000000000000006  rbp: 0x00007ffee1729b50  rsp: 0x00007ffee1729b28
   r8: 0x0000000000000000   r9: 0x0000000000000020  r10: 0x000000011665de00  r11: 0x0000000000000246
  r12: 0x0000000000000103  r13: 0x0000000000000003  r14: 0x0000000000000006  r15: 0x0000000000000016
  rip: 0x00007fff202e492e  rfl: 0x0000000000000246  cr2: 0x000000010e6353f6
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133

Thread 0 instruction stream not available.

Thread 0 last branch register state not available.


Binary Images:
       0x10e4cf000 -        0x10e6defff +org.gnu.Emacs (Version 29.0.50 - 9.0) <9FD5925E-FBD8-3633-8AFF-0FC5A4F9816B> /Applications/Emacs.app/Contents/MacOS/Emacs
       0x10ebaa000 -        0x10ec09fff +libtiff.5.dylib (0) <ECE196F8-2C67-3CBD-B28C-E528D4F17EFD> /usr/local/opt/libtiff/lib/libtiff.5.dylib
       0x10ec25000 -        0x10ec54fff +libjpeg.9.dylib (0) <700DE718-BDFF-302A-9B7C-B59426135F77> /usr/local/opt/jpeg/lib/libjpeg.9.dylib
       0x10ec66000 -        0x10ec89fff +libpng16.16.dylib (0) <7888E24F-3A96-319A-B8E8-136CE8296DDE> /usr/local/opt/libpng/lib/libpng16.16.dylib
       0x10ec9d000 -        0x10ecb0fff +libz.1.dylib (0) <55181697-73E8-3FFC-A47F-EC6A28C3D2DB> /usr/local/opt/zlib/lib/libz.1.dylib
       0x10ecc1000 -        0x10ecc8fff +libgif.dylib (0) <7DC2754E-802B-3695-9FA1-38BC3C7C9DCC> /usr/local/opt/giflib/lib/libgif.dylib
       0x10ecd6000 -        0x10f40dfff +librsvg-2.2.dylib (0) <488BCF86-9E59-30FD-9570-CE783C885D46> /usr/local/opt/librsvg/lib/librsvg-2.2.dylib
       0x110195000 -        0x1102dcfff +libgio-2.0.0.dylib (0) <12B54A52-A752-3EF5-9C39-C3A037BBDBEE> /usr/local/opt/glib/lib/libgio-2.0.0.dylib
       0x11035e000 -        0x110381fff +libgdk_pixbuf-2.0.0.dylib (0) <A262B8C3-922F-3726-BB95-D01F299F65E2> /usr/local/opt/gdk-pixbuf/lib/libgdk_pixbuf-2.0.0.dylib
       0x110398000 -        0x1103d3fff +libgobject-2.0.0.dylib (0) <3AE14727-C9FD-3E1C-9E04-F041CC3E7FC5> /usr/local/opt/glib/lib/libgobject-2.0.0.dylib
       0x1103f3000 -        0x1104f6fff +libglib-2.0.0.dylib (0) <CD8A4B3F-E351-34BE-B0FA-6F4C26F1CED9> /usr/local/opt/glib/lib/libglib-2.0.0.dylib
       0x11052a000 -        0x110535fff +libintl.8.dylib (0) <F1C4D8E0-D7AF-3BAD-A329-B9AB3241CA2D> /usr/local/opt/gettext/lib/libintl.8.dylib
       0x110545000 -        0x11060cfff +libcairo.2.dylib (0) <25C2F452-1C0D-38D0-BB98-6165FF6DE2CA> /usr/local/opt/cairo/lib/libcairo.2.dylib
       0x11064f000 -        0x110742fff +libMagickWand-7.Q16HDRI.10.dylib (0) <A859573B-704B-369B-8F6B-7FBE928B87FB> /usr/local/opt/imagemagick/lib/libMagickWand-7.Q16HDRI.10.dylib
       0x110770000 -        0x11090ffff +libMagickCore-7.Q16HDRI.10.dylib (0) <C38B1DA8-29A3-31FB-AD24-3C3188A62014> /usr/local/opt/imagemagick/lib/libMagickCore-7.Q16HDRI.10.dylib
       0x110962000 -        0x110a45fff +libxml2.2.dylib (0) <EDCC1776-B7E6-33E5-BD8F-BCE7250BABAC> /usr/local/opt/libxml2/lib/libxml2.2.dylib
       0x110a8b000 -        0x110bd2fff +libgnutls.30.dylib (0) <C6FDC876-426E-3426-8182-97F3B2531151> /usr/local/opt/gnutls/lib/libgnutls.30.dylib
       0x110c27000 -        0x110c62fff +liblcms2.2.dylib (0) <69269C86-3B95-333C-92F5-DF17C2B887A2> /usr/local/opt/little-cms2/lib/liblcms2.2.dylib
       0x110c7f000 -        0x110c8afff +libjansson.4.dylib (0) <1F082A22-F62A-3B48-8821-E0EAF078FD7B> /usr/local/opt/jansson/lib/libjansson.4.dylib
       0x110c99000 -        0x110cf8fff +libgmp.10.dylib (0) <185B6429-AE7F-3DAB-841C-B1C2C1736C6B> /usr/local/opt/gmp/lib/libgmp.10.dylib
       0x110d11000 -        0x110d18fff +libcairo-gobject.2.dylib (0) <685A37AE-1BAD-3631-9E40-C2764C16F8CE> /usr/local/opt/cairo/lib/libcairo-gobject.2.dylib
       0x110d25000 -        0x110d34fff +libpangocairo-1.0.0.dylib (0) <8187D8E1-0C02-3540-A8FA-D784B249A58E> /usr/local/opt/pango/lib/libpangocairo-1.0.0.dylib
       0x110d49000 -        0x110d58fff +libpangoft2-1.0.0.dylib (0) <AD0B1270-2DA6-3271-893B-0619ABC0DF62> /usr/local/opt/pango/lib/libpangoft2-1.0.0.dylib
       0x110d6d000 -        0x110dacfff +libpango-1.0.0.dylib (0) <87BE11C3-EA02-3423-812E-0454F446D702> /usr/local/opt/pango/lib/libpango-1.0.0.dylib
       0x110dc5000 -        0x110ea8fff +libharfbuzz.0.dylib (0) <1FF5CBED-1BFB-3D19-A0CE-3F87584A98A4> /usr/local/opt/harfbuzz/lib/libharfbuzz.0.dylib
       0x110edd000 -        0x110f0cfff +libfontconfig.1.dylib (0) <5C2DDDDC-2F92-31C7-9B31-17592941EED2> /usr/local/opt/fontconfig/lib/libfontconfig.1.dylib
       0x110f21000 -        0x110fa4fff +libfreetype.6.dylib (0) <383742C6-E6F9-3075-B1DB-97F9E30852C4> /usr/local/opt/freetype/lib/libfreetype.6.dylib
       0x110fc5000 -        0x11103cfff +libpixman-1.0.dylib (0) <9C304E34-7396-3177-A155-D946A68C7633> /usr/local/opt/pixman/lib/libpixman-1.0.dylib
       0x111059000 -        0x11105cfff +libxcb-shm.0.dylib (0) <134E7E4E-A41D-3FCB-8217-5BAC4785198A> /usr/local/opt/libxcb/lib/libxcb-shm.0.dylib
       0x111069000 -        0x11107cfff +libxcb.1.dylib (0) <FBE909BE-2533-34E6-8093-D4D47A286149> /usr/local/opt/libxcb/lib/libxcb.1.dylib
       0x111095000 -        0x11109cfff +libxcb-render.0.dylib (0) <5AE73B08-433D-3E94-96EE-7BD4B0265F5F> /usr/local/opt/libxcb/lib/libxcb-render.0.dylib
       0x1110ad000 -        0x1110b4fff +libXrender.1.dylib (0) <7CD794FB-07E7-3E51-B7CE-CB9585477278> /usr/local/opt/libxrender/lib/libXrender.1.dylib
       0x1110c1000 -        0x111194fff +libX11.6.dylib (0) <1E5D3B84-086E-397E-8C1F-7001BB6DBC49> /usr/local/opt/libx11/lib/libX11.6.dylib
       0x1111b9000 -        0x1111c4fff +libXext.6.dylib (0) <9DD9C5A8-C46E-316F-9FEA-F2C77CC090E5> /usr/local/opt/libxext/lib/libXext.6.dylib
       0x1111d1000 -        0x1111d4fff +libXau.6.dylib (0) <694056A1-961C-3CF8-9CE1-55E87D5CE0D0> /usr/local/opt/libxau/lib/libXau.6.dylib
       0x1111e1000 -        0x1111e4fff +libXdmcp.6.dylib (0) <C019AD02-BD14-398D-A4FD-E9E4AFB4B6E0> /usr/local/opt/libxdmcp/lib/libXdmcp.6.dylib
       0x1111f1000 -        0x1111f8fff +libffi.7.dylib (0) <1215088C-443F-3954-95B0-76CAD1C307BF> /usr/local/opt/libffi/lib/libffi.7.dylib
       0x111205000 -        0x111270fff +libpcre.1.dylib (0) <2FE6978A-064C-3F4C-8F3A-947322344D62> /usr/local/opt/pcre/lib/libpcre.1.dylib
       0x11127d000 -        0x111280fff +libgmodule-2.0.0.dylib (0) <EF5EDFFE-7152-3FB2-8E41-5BABCCB40C95> /usr/local/opt/glib/lib/libgmodule-2.0.0.dylib
       0x11128d000 -        0x1112a8fff +libfribidi.0.dylib (0) <272DD9BA-8B0D-38B9-A021-474B3CD1E67F> /usr/local/opt/fribidi/lib/libfribidi.0.dylib
       0x1112b5000 -        0x1112ccfff +libgraphite2.3.dylib (0) <CA298320-6A97-3433-9FAA-7D55BCC391AA> /usr/local/opt/graphite2/lib/libgraphite2.3.dylib
       0x1112dd000 -        0x111348fff +libomp.dylib (0) <EF5296BF-22E3-354B-AFAE-37C90CFC6887> /usr/local/opt/libomp/lib/libomp.dylib
       0x111385000 -        0x111390fff +liblqr-1.0.dylib (0) <38222F3F-B430-35DA-8665-40D3695825E1> /usr/local/opt/liblqr/lib/liblqr-1.0.dylib
       0x11139d000 -        0x1113a4fff +libltdl.7.dylib (0) <F95D80F4-C9AC-37B0-A590-D8BEDA2EA93F> /usr/local/opt/libtool/lib/libltdl.7.dylib
       0x1113b1000 -        0x111454fff +libp11-kit.0.dylib (0) <C63E387D-E85D-3863-A028-CE1A188444D5> /usr/local/opt/p11-kit/lib/libp11-kit.0.dylib
       0x1114a5000 -        0x1114c4fff +libidn2.0.dylib (0) <640EB1B8-B507-350F-8027-588DC2C271F6> /usr/local/opt/libidn2/lib/libidn2.0.dylib
       0x1114d1000 -        0x111634fff +libunistring.2.dylib (0) <15146CD7-FAEB-3DCA-885F-53BC712F8FD8> /usr/local/opt/libunistring/lib/libunistring.2.dylib
       0x11164d000 -        0x11165cfff +libtasn1.6.dylib (0) <01B2380B-E11D-345D-8D82-32FFC368FE3D> /usr/local/opt/libtasn1/lib/libtasn1.6.dylib
       0x111669000 -        0x111698fff +libnettle.8.dylib (0) <FBA83D1B-B47F-34E9-825D-F58698089DC9> /usr/local/opt/nettle/lib/libnettle.8.dylib
       0x1116ad000 -        0x1116e4fff +libhogweed.6.dylib (0) <B4EB323A-F950-39AD-BC93-9BCBA53E8ADB> /usr/local/opt/nettle/lib/libhogweed.6.dylib
       0x1116f9000 -        0x111804fff +libisl.23.dylib (0) <EB0DA043-2EEF-3EED-B8EC-4BAE7CB9FDE0> /usr/local/opt/isl/lib/libisl.23.dylib
       0x111891000 -        0x1118a4fff +libmpc.3.dylib (0) <CBE130CE-D3F6-3AD7-BE6C-E428B1674DCB> /usr/local/opt/libmpc/lib/libmpc.3.dylib
       0x1118b5000 -        0x111910fff +libmpfr.6.dylib (0) <3FDA97C1-C9BF-3380-B0B4-97FD5678036E> /usr/local/opt/mpfr/lib/libmpfr.6.dylib
       0x112c28000 -        0x112c73fff +window-0d1b8b93-060623ac.eln (0) <B8789F5B-FC47-33B2-B56D-9D6011F26D41> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/window-0d1b8b93-060623ac.eln
       0x112ccc000 -        0x112ce3fff +libgcc_s.1.dylib (1) <F5198FEF-6E4A-3789-9690-29212BD54C2A> /usr/local/lib/gcc/11/libgcc_s.1.dylib
       0x112cf4000 -        0x112d03fff +menu-bar-4f46ea94-705d60ae.eln (0) <15868B13-BCEA-3949-A427-34F2190C818A> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/menu-bar-4f46ea94-705d60ae.eln
       0x112d2c000 -        0x112d3ffff +faces-b9447c93-ad7c0336.eln (0) <BBE36576-72BA-3B6E-B50C-AF177B3D2712> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/faces-b9447c93-ad7c0336.eln
       0x112d68000 -        0x112dabfff +simple-fab5b0cf-3133546a.eln (0) <8697DBC0-FBC7-386F-8D4B-9F1758E2C779> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/simple-fab5b0cf-3133546a.eln
       0x112e10000 -        0x112e17fff +cl-preloaded-6e6a1f4e-676e310d.eln (0) <46943D07-5993-3858-98C4-978BC39FA990> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/cl-preloaded-6e6a1f4e-676e310d.eln
       0x112e24000 -        0x112e2bfff +byte-run-79ff048e-08b5a3c0.eln (0) <72841A84-008F-3F57-BF92-A6830CD7DC24> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/byte-run-79ff048e-08b5a3c0.eln
       0x112e38000 -        0x112e4bfff +cl-generic-be68ad15-1eb8b22c.eln (0) <9006A08A-00E1-32AB-A511-633FD60A34FF> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/cl-generic-be68ad15-1eb8b22c.eln
       0x112e6c000 -        0x112e7bfff +custom-c166a157-ea5ad23e.eln (0) <C1B7B052-123F-36A7-8317-056D9D7A15CD> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/custom-c166a157-ea5ad23e.eln
       0x112e94000 -        0x112ec3fff +subr-13adf6a6-12715ba6.eln (0) <2E6EEDBA-7FC8-3CEC-9AAD-FBCF5E92F63E> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/subr-13adf6a6-12715ba6.eln
       0x112f14000 -        0x112f1ffff +lisp-mode-410874a4-aa4e1be9.eln (0) <D2ACBF69-D478-31B4-A86F-98CBB94BC8AD> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/lisp-mode-410874a4-aa4e1be9.eln
       0x112f34000 -        0x112f3ffff +eldoc-d20a5fe9-7132cffe.eln (0) <55CD6EE6-9BFA-332F-867F-A59EF995A080> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/eldoc-d20a5fe9-7132cffe.eln
       0x112f54000 -        0x112f5bfff +timer-3ee7cfd9-63f6ba57.eln (0) <FBB0BCA3-8FE4-3C51-9B16-A54CC8646D3E> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/timer-3ee7cfd9-63f6ba57.eln
       0x112f6c000 -        0x112f83fff +mule-cmds-c8553014-0f5e2983.eln (0) <BE064F85-50B0-3850-9BBA-91410659D32A> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/mule-cmds-c8553014-0f5e2983.eln
       0x112fa8000 -        0x112fb3fff +newcomment-678006bb-3c8bbe81.eln (0) <7244331D-F151-3CAF-BF4A-C636F5D40E98> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/newcomment-678006bb-3c8bbe81.eln
       0x112fc4000 -        0x112fcffff +tabulated-list-552ba1e5-7ae2fb29.eln (0) <67EBF652-469F-3921-B73A-D758EED1C633> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/tabulated-list-552ba1e5-7ae2fb29.eln
       0x112fdc000 -        0x112fdffff +epa-hook-99ab3afb-52a61613.eln (0) <A69D775D-94CF-3B40-BAF1-D0C35076393A> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/epa-hook-99ab3afb-52a61613.eln
       0x112fec000 -        0x112feffff +fringe-d5d49a60-1e0f939d.eln (0) <63DB3E73-6163-3B6A-9B0C-FE7A5EEEA115> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/fringe-d5d49a60-1e0f939d.eln
       0x112ff8000 -        0x11300ffff +replace-fc551dbc-cc2afab5.eln (0) <4242EB3D-73FE-3F46-A25A-A89DD017FB54> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/replace-fc551dbc-cc2afab5.eln
       0x113030000 -        0x11303bfff +macroexp-2c3e1495-8e8af7d5.eln (0) <2B469077-E271-3A97-8E9A-E537CAC653FA> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/macroexp-2c3e1495-8e8af7d5.eln
       0x11304c000 -        0x11307ffff +files-1e8937b2-13ea3475.eln (0) <433A4359-AB0C-34A1-B9FC-718D89517AD8> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/files-1e8937b2-13ea3475.eln
       0x1130cc000 -        0x1130cffff +widget-5b69ebb0-d23fe910.eln (0) <C4C90545-B15C-3081-A640-898AAD8CD439> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/widget-5b69ebb0-d23fe910.eln
       0x1130d8000 -        0x1130dbfff +version-025f5cb3-3b652f82.eln (0) <D8D44977-DDAF-3AA7-9739-06F533FB61C4> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/version-025f5cb3-3b652f82.eln
       0x1130e8000 -        0x1130ebfff +jka-cmpr-hook-ff630d3e-233a4a23.eln (0) <503202ED-5DF4-35E1-9D26-4A5C7B0DEC67> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/jka-cmpr-hook-ff630d3e-233a4a23.eln
       0x1130fc000 -        0x1130fffff +cus-face-74f1689e-5cc64834.eln (0) <1C417DE6-4201-3C27-A987-52B55BA2F806> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/cus-face-74f1689e-5cc64834.eln
       0x113108000 -        0x11310ffff +easymenu-1fb41c0e-dee4b78e.eln (0) <58DF68A2-DA6E-3617-8165-37EA7FBF8B72> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/easymenu-1fb41c0e-dee4b78e.eln
       0x113120000 -        0x113137fff +elisp-mode-90dbfe40-497eaf26.eln (0) <AF32C7AC-5F8E-3860-8500-E2E68AC7A819> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/elisp-mode-90dbfe40-497eaf26.eln
       0x113154000 -        0x113177fff +minibuffer-1b0f548b-b3505c2b.eln (0) <88C2C375-73CF-385B-88A5-5EE730B66345> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/minibuffer-1b0f548b-b3505c2b.eln
       0x1131a8000 -        0x1131bffff +frame-b40fc590-e67d4a02.eln (0) <4AA59D3C-28E0-3A7A-B828-DAD2D0C7569C> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/frame-b40fc590-e67d4a02.eln
       0x1131e4000 -        0x1131ebfff +bindings-d30713c5-b85c3195.eln (0) <CFABCB45-F7EF-34F7-AD6A-3959FD274484> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/bindings-d30713c5-b85c3195.eln
       0x113200000 -        0x11320ffff +font-lock-895216f6-8df2a4b0.eln (0) <5AE5A722-8BDA-350F-B68E-BE7CA9DF0102> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/font-lock-895216f6-8df2a4b0.eln
       0x113228000 -        0x11322ffff +jit-lock-8a988e43-f1e18786.eln (0) <A61FEE82-D049-377B-AD2F-3802780DB8CA> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/jit-lock-8a988e43-f1e18786.eln
       0x113240000 -        0x113247fff +vc-hooks-cfa0878e-09a623ed.eln (0) <0189E16A-6547-382A-BB59-98EE0414DC39> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/vc-hooks-cfa0878e-09a623ed.eln
       0x11325c000 -        0x11326ffff +help-59d8049f-c539bd3b.eln (0) <2A4FDAC6-18B7-330A-A50D-215CCDAD5531> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/help-59d8049f-c539bd3b.eln
       0x113288000 -        0x113293fff +nadvice-64630aaa-4c5c4a90.eln (0) <19E3C3BA-4D30-3C94-B03C-A58E9A904A55> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/nadvice-64630aaa-4c5c4a90.eln
       0x1132a4000 -        0x1132b3fff +mule-3352613d-361819e2.eln (0) <D76A7EB5-C9C8-39F0-AF06-97A79FC04317> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/mule-3352613d-361819e2.eln
       0x1132d0000 -        0x1132dbfff +abbrev-2af30c9a-8618c1dc.eln (0) <4A07CE76-D83A-30FE-A2EF-4B37C669F0A9> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/abbrev-2af30c9a-8618c1dc.eln
       0x1132f0000 -        0x1132f3fff +paren-0f414553-181d80ba.eln (0) <30E42D4E-0AAD-3ABC-B245-763A10659D91> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/paren-0f414553-181d80ba.eln
       0x113300000 -        0x113303fff +characters-45232aae-88573ead.eln (0) <AEEB1EBC-4CED-333C-A7AB-7B5D08C4CD68> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/characters-45232aae-88573ead.eln
       0x113314000 -        0x11331bfff +button-747c9d6e-8b5254bd.eln (0) <0FD65ADD-10B9-34F7-BB04-D2598FEDA15B> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/button-747c9d6e-8b5254bd.eln
       0x113328000 -        0x11333bfff +startup-bbc6ea72-8e089fac.eln (0) <579B8FC2-E9BF-381A-965F-4EBB04B1D4BD> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/startup-bbc6ea72-8e089fac.eln
       0x113358000 -        0x11335bfff +backquote-d5b20f7c-94441450.eln (0) <0BB78150-7845-3012-8976-275574155E7D> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/backquote-d5b20f7c-94441450.eln
       0x113364000 -        0x11336ffff +format-c5b23b0d-976f7444.eln (0) <D64C85A8-1AA1-31E5-87FC-7C9A37FA7025> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/format-c5b23b0d-976f7444.eln
       0x11337c000 -        0x113383fff +paragraphs-faf2e9b4-287d411c.eln (0) <2F6CB97D-DA55-371E-B2F9-AF73C56A8538> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/paragraphs-faf2e9b4-287d411c.eln
       0x113390000 -        0x1133abfff +mouse-15f283fa-e510aee4.eln (0) <69F8D017-D95A-3E8B-9FFA-CC96C0972E46> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/mouse-15f283fa-e510aee4.eln
       0x1133cc000 -        0x1133d3fff +electric-a9ca6cdd-d5348d96.eln (0) <0AF29CBE-6DB1-33A3-A2A4-19D4C6E575AF> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/electric-a9ca6cdd-d5348d96.eln
       0x1133e4000 -        0x1133effff +fill-19d89c43-e73ee132.eln (0) <D6358C5C-A3F8-3790-A90F-3D7DD08D8ED1> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/fill-19d89c43-e73ee132.eln
       0x113400000 -        0x113423fff +isearch-693bdd75-e2ff13cc.eln (0) <3B85C964-207E-3A54-A537-CF6F8F122385> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/isearch-693bdd75-e2ff13cc.eln
       0x113454000 -        0x113457fff +common-win-4b869e38-2d498d61.eln (0) <54557D2E-B1BC-3D7B-BCC2-534E2039AF76> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/common-win-4b869e38-2d498d61.eln
       0x113460000 -        0x113467fff +select-784d9bb7-16b77940.eln (0) <33C0F52A-212C-322A-BE6B-70D685D2DF93> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/select-784d9bb7-16b77940.eln
       0x113478000 -        0x11347bfff +tty-colors-b7804baf-d44aa574.eln (0) <4489808E-6F95-3536-A628-02CA2CC6A996> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/tty-colors-b7804baf-d44aa574.eln
       0x113488000 -        0x113493fff +image-f221b419-cebcf27e.eln (0) <6B493A45-45C9-317C-894F-10981AC140BA> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/image-f221b419-cebcf27e.eln
       0x1134a8000 -        0x1134affff +uniquify-0fb233ac-ad08ae32.eln (0) <10D1E39C-C912-3EBE-95A5-ADC48F69652A> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/uniquify-0fb233ac-ad08ae32.eln
       0x1134bc000 -        0x1134cffff +tab-bar-f81d329c-06467bf3.eln (0) <16A8C7E2-643D-37D5-A2F5-E0119EC47E40> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/tab-bar-f81d329c-06467bf3.eln
       0x1134f0000 -        0x1134fbfff +syntax-bf4e4bc4-2ad11661.eln (0) <276DF7D1-0234-3B55-9D11-48F5A9F28A79> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/syntax-bf4e4bc4-2ad11661.eln
       0x113510000 -        0x113513fff +regexp-opt-d2355c94-8aaa3071.eln (0) <75D38DEA-670E-3743-AF8E-92D91B7582A2> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/regexp-opt-d2355c94-8aaa3071.eln
       0x11351c000 -        0x11351ffff +env-72406999-2590f36c.eln (0) <71BC0BA7-48AD-3A01-A903-1548003A23AC> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/env-72406999-2590f36c.eln
       0x113528000 -        0x11352bfff +dnd-12d90309-6a3cc25d.eln (0) <D050C653-40F9-30EF-BD74-BD54D97A0687> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/dnd-12d90309-6a3cc25d.eln
       0x113538000 -        0x11353ffff +indent-396b3792-3864e157.eln (0) <0BB3AD76-F8A8-3D2C-8BAF-9B83583DEE62> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/indent-396b3792-3864e157.eln
       0x11354c000 -        0x113557fff +lisp-1e88867d-903ca481.eln (0) <384394A7-69F5-3002-A36E-493143E30D26> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/lisp-1e88867d-903ca481.eln
       0x113568000 -        0x11356ffff +buff-menu-da4b0b04-e26ec37e.eln (0) <6D8777C4-86EA-3A3D-84F6-5923B6FE95E5> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/buff-menu-da4b0b04-e26ec37e.eln
       0x113580000 -        0x113587fff +mule-util-5c349a87-240d7ad0.eln (0) <0B842707-9D0B-3A21-A2EE-3588E1E67C7E> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/mule-util-5c349a87-240d7ad0.eln
       0x113594000 -        0x11359bfff +prog-mode-642b2411-1209aa56.eln (0) <58B8D98A-5039-35B5-A1C6-CCAB894F45A4> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/prog-mode-642b2411-1209aa56.eln
       0x1135a8000 -        0x1135b3fff +composite-beea1fd5-4363c30c.eln (0) <E35C06DB-5EC3-3D82-8B20-22E066A7ED1D> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/composite-beea1fd5-4363c30c.eln
       0x1135c4000 -        0x1135c7fff +tool-bar-ae0b5bc0-333ba2df.eln (0) <BF73E327-327B-3485-B9BB-6D446E472E81> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/tool-bar-ae0b5bc0-333ba2df.eln
       0x1135d0000 -        0x1135dbfff +register-80045398-755c3117.eln (0) <CADF54EF-15D4-368B-8D01-2573F6E933DD> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/register-80045398-755c3117.eln
       0x1135ec000 -        0x1135f3fff +ns-win-ef8075c0-9941da36.eln (0) <B6424A5E-0C32-3107-A465-41026819DEC2> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/ns-win-ef8075c0-9941da36.eln
       0x113604000 -        0x11360bfff +scroll-bar-20650688-dcd92d84.eln (0) <43350292-4E43-394F-9CD1-105E858259F3> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/scroll-bar-20650688-dcd92d84.eln
       0x113618000 -        0x11361bfff +text-mode-7f741068-639de643.eln (0) <A8EA6897-9830-394A-8FBF-A8336C4AFDF6> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/text-mode-7f741068-639de643.eln
       0x113624000 -        0x11362bfff +ucs-normalize-ad11ce47-a86b6097.eln (0) <AD373747-9BA1-3C0D-AAC8-B5B7D81CB686> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/ucs-normalize-ad11ce47-a86b6097.eln
       0x113668000 -        0x11366ffff +fontset-da863153-f37b6bf7.eln (0) <BFF39A8E-DB84-3F21-ABE7-16E88D63216E> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/fontset-da863153-f37b6bf7.eln
       0x113684000 -        0x113687fff +obarray-318a5d56-d3351904.eln (0) <3FB0E7F4-8889-3B51-B912-70026457B18B> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/obarray-318a5d56-d3351904.eln
       0x113690000 -        0x113693fff +font-core-c3bff1fd-e951c4da.eln (0) <72F032AC-B4D1-3391-AC48-E441E71ACAA6> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/font-core-c3bff1fd-e951c4da.eln
       0x11369c000 -        0x11369ffff +cus-start-26315480-0563dde3.eln (0) <A6B3813E-B211-3184-A48C-D1E571D49B36> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/cus-start-26315480-0563dde3.eln
       0x1136ac000 -        0x1136affff +rfn-eshadow-25788e78-6d05e299.eln (0) <5EA52E40-0C32-3ABD-B426-51E171B40E1D> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/rfn-eshadow-25788e78-6d05e299.eln
       0x1136bc000 -        0x1136bffff +tooltip-29462ede-f1e4b720.eln (0) <D30256C8-D073-387B-81E8-845E33653D69> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/tooltip-29462ede-f1e4b720.eln
       0x1136d0000 -        0x1136d7fff +mwheel-168e9ec3-b1e598ac.eln (0) <CD66DAD5-0E7D-3C6A-A6E6-558A1A3C1764> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/mwheel-168e9ec3-b1e598ac.eln
       0x1136e8000 -        0x1136ebfff +page-ee7241cc-fcf8a8d0.eln (0) <9C58EB71-67DB-3027-ACA8-E506A7797A0A> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/page-ee7241cc-fcf8a8d0.eln
       0x1136f4000 -        0x1136f7fff +case-table-3a8e2808-4aacbc03.eln (0) <882256B5-BDE4-3DCB-93F2-A009BBD898D6> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/case-table-3a8e2808-4aacbc03.eln
       0x113700000 -        0x113703fff +european-369de593-a2ccf4e7.eln (0) <A51B1AAD-50B3-3200-9CDC-EF2C3A34A826> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/european-369de593-a2ccf4e7.eln
       0x113710000 -        0x113713fff +shorthands-936cd2f1-d5dbce59.eln (0) <8775F06D-0573-3B20-AE54-5AE987387336> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/shorthands-936cd2f1-d5dbce59.eln
       0x11371c000 -        0x11371ffff +iso-transl-466860a2-4d10a84d.eln (0) <E8D94775-B474-33B4-99A2-CF2F4F571776> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/iso-transl-466860a2-4d10a84d.eln
       0x113728000 -        0x11372bfff +misc-lang-7cb33d20-db3eb4ae.eln (0) <760D3C87-DB6D-39B0-ABA7-BC31A5EFD48F> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/misc-lang-7cb33d20-db3eb4ae.eln
       0x113738000 -        0x11373ffff +map-ynp-990591b5-abc6a6e6.eln (0) <C16DB562-8D8E-3289-8AC8-93D6CCEEA962> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/map-ynp-990591b5-abc6a6e6.eln
       0x113748000 -        0x11374bfff +indian-0c4ce628-9e7e5ce2.eln (0) <A6A27FF7-23DB-3584-8FB9-BA8D3B092DD3> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/indian-0c4ce628-9e7e5ce2.eln
       0x113754000 -        0x113757fff +hebrew-b9ed6a0d-0504fa52.eln (0) <FC2F2523-06A8-320B-BF97-8D29B44F35B6> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/preloaded/hebrew-b9ed6a0d-0504fa52.eln
       0x115662000 -        0x115669fff +cl-lib-8b938900-257e0be7.eln (0) <88392309-C98F-3C9E-983F-852337D079AE> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/cl-lib-8b938900-257e0be7.eln
       0x115676000 -        0x11569dfff +cl-macs-7ae82f81-8856b4f4.eln (0) <D4ADA892-5C28-3C56-B122-03FDB36444D0> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/cl-macs-7ae82f81-8856b4f4.eln
       0x1156ca000 -        0x1156ddfff +gv-e0cf7478-c64d0587.eln (0) <122AEF63-3327-3861-9EC8-58C9FD7199F0> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/gv-e0cf7478-c64d0587.eln
       0x1156fe000 -        0x115705fff +subr-x-02dfef32-d52e7b60.eln (0) <3472CAEA-7299-32F6-B1C1-6D1B34C003C1> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/subr-x-02dfef32-d52e7b60.eln
       0x115712000 -        0x115789fff +comp-7672a6ed-3588c26d.eln (0) <38D7F46D-4B56-3309-BF69-F12698E74C8B> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/comp-7672a6ed-3588c26d.eln
       0x1157f2000 -        0x11582dfff +bytecomp-12882072-29d9ad62.eln (0) <72FF2AC3-DC6C-3002-B9DE-76CD1F3E57F3> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/bytecomp-12882072-29d9ad62.eln
       0x115866000 -        0x115871fff +cconv-3b1f1f98-cca24f72.eln (0) <03E3B49B-5040-3547-AF1A-932AF6222BD7> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/cconv-3b1f1f98-cca24f72.eln
       0x11587e000 -        0x11588dfff +cl-extra-d7051cba-45da9df6.eln (0) <75FA5C8F-82C3-36F6-9A4B-489D21620614> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/cl-extra-d7051cba-45da9df6.eln
       0x11589e000 -        0x1158a9fff +seq-c314b42f-87f234fb.eln (0) <9DE02C90-CD14-33B6-82CF-F8D762BD109B> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/seq-c314b42f-87f234fb.eln
       0x1158be000 -        0x1158d9fff +byte-opt-9c5f25f5-7d359733.eln (0) <4834728F-0407-3860-B682-1DAE08CB3123> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/byte-opt-9c5f25f5-7d359733.eln
       0x1158ee000 -        0x1158f5fff +help-mode-d4dbae3d-12232a31.eln (0) <7842F696-6C4B-3669-A508-1FD9B47B8B05> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/help-mode-d4dbae3d-12232a31.eln
       0x115906000 -        0x11591dfff +cl-seq-f464c4e2-95d0eb23.eln (0) <240CAAB7-E68E-3B62-AE3D-197EA1FFDDA8> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/cl-seq-f464c4e2-95d0eb23.eln
       0x11592a000 -        0x115939fff +rx-627d8c83-3841ce7a.eln (0) <D5481489-2421-3AA3-9C79-ADC3ECFE2B0E> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/rx-627d8c83-3841ce7a.eln
       0x11594e000 -        0x115951fff +warnings-28e75f4d-9cfd0a83.eln (0) <ABEAD12F-F521-3EEA-A22E-658FAE7DA6CD> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/warnings-28e75f4d-9cfd0a83.eln
       0x11595a000 -        0x115979fff +comp-cstr-ef162ef7-c5706dcf.eln (0) <C4BD89D6-A2AA-39AA-8224-B784E0915949> /usr/local/Cellar/emacs-head@28/28.0.50_1/lib/emacs/29.0.50/native-lisp/29.0.50-a040b67e/comp-cstr-ef162ef7-c5706dcf.eln
       0x115996000 -        0x115999fff +subr--trampoline-72756e2d686f6f6b73_run_hooks_0.eln (0) <FE8A0CA3-CA56-3634-A7B0-A091995B9C97> /Users/USER/*/subr--trampoline-72756e2d686f6f6b73_run_hooks_0.eln
       0x116281000 -        0x116284fff +pp-5d47c1cc-31cf79d7.eln (0) <DE900F88-ECA9-368C-9741-9792CDAEC8D4> /Users/USER/*/pp-5d47c1cc-31cf79d7.eln
       0x116291000 -        0x116294fff +subr--trampoline-7965732d6f722d6e6f2d70_yes_or_no_p_0.eln (0) <67BC2DBF-F8B4-3E1B-A137-4E7055D66A76> /Users/USER/*/subr--trampoline-7965732d6f722d6e6f2d70_yes_or_no_p_0.eln
       0x116586000 -        0x116621fff  dyld (852.2) <0CC19410-FD43-39AE-A32A-50273F8303A4> /usr/lib/dyld
       0x11669e000 -        0x117e71fff +libgccjit.so.0 (0) <AD21A27C-1A09-3DAE-8644-332F89A6524A> /usr/local/opt/libgccjit/lib/gcc/11/libgccjit.so.0
       0x15c155000 -        0x15c164fff  libobjc-trampolines.dylib (824) <C1B6BD90-D6AA-388B-B692-D66D512630AA> /usr/lib/libobjc-trampolines.dylib
       0x165f93000 -        0x165fa6fff +advice-791b3e89-11e44ffe.eln (0) <F04868DC-C67D-3A88-9C30-A614E1429778> /Users/USER/*/advice-791b3e89-11e44ffe.eln
       0x165fc3000 -        0x165fd2fff +use-package-core-9e2dde82-0367eb9c.eln (0) <88841472-12BD-3C5D-855D-2281BB3EDDE6> /Users/USER/*/use-package-core-9e2dde82-0367eb9c.eln
       0x165ff3000 -        0x16600efff +general-cbf906bf-0dceac76.eln (0) <E96F9839-8FDF-38B0-9174-D86C4AF6D477> /Users/USER/*/general-cbf906bf-0dceac76.eln
       0x16603b000 -        0x166042fff +easy-mmode-5bf0223e-e8d7a289.eln (0) <13C36E94-6B9A-3F27-9AEC-9D9D25406F03> /Users/USER/*/easy-mmode-5bf0223e-e8d7a289.eln
       0x166057000 -        0x16605efff +edmacro-74bf45a3-291637af.eln (0) <06F3CAAA-B715-3D8B-B9B3-96A68852155D> /Users/USER/*/edmacro-74bf45a3-291637af.eln
       0x166067000 -        0x166072fff +kmacro-048feaec-4aea1947.eln (0) <E88E12FA-DBBF-3502-8038-54A1FD90A924> /Users/USER/*/kmacro-048feaec-4aea1947.eln
       0x166083000 -        0x166086fff +ibuf-macs-eb4b06c3-f9cba832.eln (0) <ECAA5FE2-6AA9-3257-8C42-3E5704DF9ED2> /Users/USER/*/ibuf-macs-eb4b06c3-f9cba832.eln
       0x166093000 -        0x166096fff +ns-auto-titlebar-48c108ef-afaefc1e.eln (0) <F3880F89-D6BA-35A9-B97F-1C99BCC4528E> /Users/USER/*/ns-auto-titlebar-48c108ef-afaefc1e.eln
       0x16609f000 -        0x1660a2fff +derived-381801a7-7c91e82d.eln (0) <52D1C673-9254-3C4A-8441-0F60A68A2182> /Users/USER/*/derived-381801a7-7c91e82d.eln
       0x1660af000 -        0x1660b2fff +let-alist-c9c0fd50-9d6e62d0.eln (0) <276A9392-500A-324C-9048-C39F7A973CE7> /Users/USER/*/let-alist-c9c0fd50-9d6e62d0.eln
       0x1660bb000 -        0x1660befff +mu4e-meta-0360aea8-9270e683.eln (0) <A5DA11FD-A709-3D33-9F21-1CD34583AD84> /Users/USER/*/mu4e-meta-0360aea8-9270e683.eln
       0x1660c7000 -        0x1660f6fff +projectile-88b2610b-6ef371a1.eln (0) <FE92E293-5A91-3EE5-92F5-CA757C029CA7> /Users/USER/*/projectile-88b2610b-6ef371a1.eln
       0x166147000 -        0x16614efff +thingatpt-6fc8a4ab-a503f8e9.eln (0) <696929A1-1DF8-385D-AA6A-1AADE1E15024> /Users/USER/*/thingatpt-6fc8a4ab-a503f8e9.eln
       0x16615f000 -        0x166172fff +ibuffer-c2dc0626-c8778937.eln (0) <555A5E39-6658-3801-B000-DA8DD27E761A> /Users/USER/*/ibuffer-c2dc0626-c8778937.eln
       0x166197000 -        0x16619afff +ibuffer-vc-5b1fec38-60d9a565.eln (0) <E0827ED5-8267-3B42-8BF9-9F8314D1A57C> /Users/USER/*/ibuffer-vc-5b1fec38-60d9a565.eln
       0x1661a7000 -        0x1661befff +ibuf-ext-5624402a-ae2054a6.eln (0) <DC8B7338-7657-3964-871D-AC544C980DB9> /Users/USER/*/ibuf-ext-5624402a-ae2054a6.eln
       0x1661df000 -        0x1661f6fff +compile-91e1c2a0-4f9cbe6e.eln (0) <3B30041C-1F13-35C1-A43C-3DD8E3E26341> /Users/USER/*/compile-91e1c2a0-4f9cbe6e.eln
       0x16621b000 -        0x166232fff +comint-faef15ad-2dd57c30.eln (0) <84ABB7E4-583E-3B6F-8D59-5E2DD3904CCA> /Users/USER/*/comint-faef15ad-2dd57c30.eln
       0x16625b000 -        0x16625efff +ring-bff0b981-6859b44d.eln (0) <920299C0-742D-39E4-A347-A24385B0070D> /Users/USER/*/ring-bff0b981-6859b44d.eln
       0x16626b000 -        0x166272fff +ansi-color-75eac800-1d9862ac.eln (0) <A5D01212-ABDF-3DEC-8206-36B1AB635DCA> /Users/USER/*/ansi-color-75eac800-1d9862ac.eln
       0x16627f000 -        0x166282fff +text-property-search-db1383f6-a8bb64da.eln (0) <D5130804-C951-3245-9FC3-2A391788F465> /Users/USER/*/text-property-search-db1383f6-a8bb64da.eln
       0x16628b000 -        0x166292fff +grep-c9b5c28d-b893d268.eln (0) <6A01AB37-4C09-3BB9-91C7-B8CA8D047CC2> /Users/USER/*/grep-c9b5c28d-b893d268.eln
       0x1662a7000 -        0x1662aefff +lisp-mnt-2b554e27-1a1e7e46.eln (0) <F77C94FE-DC0B-3D06-9CF2-F199D31387C9> /Users/USER/*/lisp-mnt-2b554e27-1a1e7e46.eln
       0x1662bf000 -        0x1662c2fff +mail-parse-5e7f4583-c61cb325.eln (0) <27DA88F4-3D51-3303-BEF4-6C918C80C2AD> /Users/USER/*/mail-parse-5e7f4583-c61cb325.eln
       0x1662cb000 -        0x1662cefff +mail-prsvr-b79144a3-3e7273c1.eln (0) <F499AE02-4857-3CE8-9573-3E79D90DD730> /Users/USER/*/mail-prsvr-b79144a3-3e7273c1.eln
       0x1662d7000 -        0x1662dafff +ietf-drums-23d9ecfe-22f0db32.eln (0) <38B7E0CF-0E9F-3A6E-A73F-A4812BB79AA1> /Users/USER/*/ietf-drums-23d9ecfe-22f0db32.eln
       0x1662e7000 -        0x1662eafff +rfc2231-e2cbed75-6d39fd91.eln (0) <8E07857E-0F5F-3FA0-9F99-E30D7C2E3FEC> /Users/USER/*/rfc2231-e2cbed75-6d39fd91.eln
       0x1662f7000 -        0x166302fff +rfc2047-b84e264d-13d9937a.eln (0) <1CE2C8CD-29B5-32AB-A01D-165F13FB1BBF> /Users/USER/*/rfc2047-b84e264d-13d9937a.eln
       0x166313000 -        0x16631afff +mm-util-3a4439f0-4318e260.eln (0) <4D2545EB-17D7-3857-A5F2-C97D095435ED> /Users/USER/*/mm-util-3a4439f0-4318e260.eln
       0x16632b000 -        0x16632efff +rfc2045-713c994b-94aee2d3.eln (0) <71CEA7CE-FE50-31DD-BF1F-2E02E2499143> /Users/USER/*/rfc2045-713c994b-94aee2d3.eln
       0x166337000 -        0x16633afff +subr--trampoline-64656c6574652d66696c65_delete_file_0.eln (0) <00272B7B-6E78-3B7F-9DE3-896C772B6F2A> /Users/USER/*/subr--trampoline-64656c6574652d66696c65_delete_file_0.eln
       0x166343000 -        0x166346fff +delsel-1c603c42-c9c53d19.eln (0) <45F65A1A-C670-39F8-BBA9-38035BB81EE5> /Users/USER/*/delsel-1c603c42-c9c53d19.eln
       0x166353000 -        0x166356fff +citre-config-cfa04131-fffef036.eln (0) <F03DD717-9769-3895-90DC-04896EDDA35F> /Users/USER/*/citre-config-cfa04131-fffef036.eln
       0x16635f000 -        0x166366fff +bind-key-2e312047-5f57fc5a.eln (0) <46B81E81-077C-336A-96A6-983677568833> /Users/USER/*/bind-key-2e312047-5f57fc5a.eln
       0x16636f000 -        0x166372fff +shut-up-3dee516b-0418b09b.eln (0) <2D1FD096-AB1F-35FD-8E02-3FA71E13559B> /Users/USER/*/shut-up-3dee516b-0418b09b.eln
       0x16637b000 -        0x166382fff +insert-translated-name-43f263e9-8d8238b9.eln (0) <9DDF512A-CFD0-30FD-BCEA-C4AADDA35BCB> /Users/USER/*/insert-translated-name-43f263e9-8d8238b9.eln
       0x16638f000 -        0x166396fff +json-a90a1eab-9c96a131.eln (0) <DCE9446F-F5D1-3C05-860A-9CF68B541B5C> /Users/USER/*/json-a90a1eab-9c96a131.eln
       0x1663a7000 -        0x1663aefff +map-5d7b616a-f276a157.eln (0) <CA16C196-E5E9-33B6-A809-1202F5B86E98> /Users/USER/*/map-5d7b616a-f276a157.eln
       0x1663c3000 -        0x1663c6fff +exec-path-from-shell-538a4050-6dbbb2ce.eln (0) <EDB532FC-D013-373E-96B8-31BBC8DD477B> /Users/USER/*/exec-path-from-shell-538a4050-6dbbb2ce.eln
       0x1663cf000 -        0x1663dafff +valign-d7d6577b-2299651e.eln (0) <EC0645B1-898D-3FA3-8EB0-AE5D0F55C27D> /Users/USER/*/valign-d7d6577b-2299651e.eln
       0x1663eb000 -        0x1663eefff +ob-sql-mode-c080ce11-7e0f4abb.eln (0) <20FA054A-6722-39DF-A913-900B9A593467> /Users/USER/*/ob-sql-mode-c080ce11-7e0f4abb.eln
       0x1663f7000 -        0x1663fafff +ob-b6a6cad1-e19f8659.eln (0) <7C59DE22-5639-3DBB-B025-40CE788D9839> /Users/USER/*/ob-b6a6cad1-e19f8659.eln
       0x166403000 -        0x166412fff +org-macs-0b563055-9df714ab.eln (0) <66A68FD0-CCF9-3DC2-B2E4-54FAC19ADC1C> /Users/USER/*/org-macs-0b563055-9df714ab.eln
       0x16642b000 -        0x16642efff +format-spec-644c0068-fc7bd0a8.eln (0) <07D63223-6DA5-3981-8927-9E38F92A1642> /Users/USER/*/format-spec-644c0068-fc7bd0a8.eln
       0x166437000 -        0x16643efff +org-compat-2d4c1484-bc117a0a.eln (0) <35A54233-F766-38FD-83C5-4DA0104C0939> /Users/USER/*/org-compat-2d4c1484-bc117a0a.eln
       0x166457000 -        0x16645afff +org-keys-7d75550f-eacb49a9.eln (0) <E890AE5D-EC01-3FEC-87EA-051CAFEA783A> /Users/USER/*/org-keys-7d75550f-eacb49a9.eln
       0x166467000 -        0x166476fff +oc-14841877-578aa96b.eln (0) <64006CDA-5A61-31DA-98DF-5FECB58813FA> /Users/USER/*/oc-14841877-578aa96b.eln
       0x16648f000 -        0x166492fff +ob-eval-d0827207-3cd75224.eln (0) <BDBE200A-3E52-3F03-AC65-5C206DBBC43E> /Users/USER/*/ob-eval-d0827207-3cd75224.eln
       0x16649b000 -        0x1664bafff +ob-core-79be3077-6ed35c30.eln (0) <211F53D4-0F47-3061-9146-727BD584C5AC> /Users/USER/*/ob-core-79be3077-6ed35c30.eln
       0x1664e3000 -        0x1664e6fff +ob-comint-0cb76e67-943ae984.eln (0) <15C42635-F7D4-3937-A123-7B0560515765> /Users/USER/*/ob-comint-0cb76e67-943ae984.eln
       0x1664ef000 -        0x1664f2fff +ob-exp-318a08b3-73c14d14.eln (0) <0BF5A95F-4678-3B84-9478-29E34938ABF4> /Users/USER/*/ob-exp-318a08b3-73c14d14.eln
       0x1664fb000 -        0x1664fefff +ob-table-53c53f99-4943cf5f.eln (0) <4BCD5A12-C973-33FB-B7EA-320F603F19EC> /Users/USER/*/ob-table-53c53f99-4943cf5f.eln
       0x166507000 -        0x16650afff +ob-lob-3fec3bf7-f88c2277.eln (0) <E2C6F704-F861-3CB9-9985-27BEF1F5D084> /Users/USER/*/ob-lob-3fec3bf7-f88c2277.eln
       0x166517000 -        0x16651afff +ob-ref-1ea45334-9214c2dc.eln (0) <3C67023A-538B-3ADA-BD21-2AFA7F7F3AE2> /Users/USER/*/ob-ref-1ea45334-9214c2dc.eln
       0x166527000 -        0x16652efff +ob-tangle-721af8d7-293ecc7f.eln (0) <6AEC37A8-A03E-3852-9AB1-0D6D0192C21C> /Users/USER/*/ob-tangle-721af8d7-293ecc7f.eln
       0x16653f000 -        0x16654afff +org-src-70e1ae0d-c91fe2a4.eln (0) <450F44C6-8226-332F-A78D-205DFC9F6268> /Users/USER/*/org-src-70e1ae0d-c91fe2a4.eln
       0x16655f000 -        0x16656efff +ol-09ca10ff-975aba69.eln (0) <3E027EF2-2160-320C-B395-0D1944DAECF4> /Users/USER/*/ol-09ca10ff-975aba69.eln
       0x166587000 -        0x166632fff +org-19e88f1c-7d7707fe.eln (0) <AEC7D7C9-C2F0-3F69-9B28-E0C223EF8415> /Users/USER/*/org-19e88f1c-7d7707fe.eln
       0x1666df000 -        0x1666fafff +calendar-d19e5c14-a1a6ed74.eln (0) <96BFD33A-BDD1-3A48-829E-B5F5BA83306B> /Users/USER/*/calendar-d19e5c14-a1a6ed74.eln
       0x166723000 -        0x166726fff +cal-menu-9380b697-5c9f8c2f.eln (0) <DA98AB95-B0AD-325E-9C59-205382670914> /Users/USER/*/cal-menu-9380b697-5c9f8c2f.eln
       0x166733000 -        0x16673efff +cal-china-x-7e5a1e46-f78bd5b9.eln (0) <BA958098-266E-3E45-B833-62C37A1C4996> /Users/USER/*/cal-china-x-7e5a1e46-f78bd5b9.eln
       0x16674f000 -        0x16675efff +holidays-39d09682-d557f096.eln (0) <8F80FE79-71FC-3F7E-9567-CB76A491FA38> /Users/USER/*/holidays-39d09682-d557f096.eln
       0x16676f000 -        0x16677efff +cal-china-28218d30-0abd7093.eln (0) <EB04B68A-DDB6-3A1C-946D-8D1A249CEB2A> /Users/USER/*/cal-china-28218d30-0abd7093.eln
       0x16678b000 -        0x166796fff +lunar-791aa94f-639a6572.eln (0) <727DF1FB-7A4B-3989-A7F2-3F06367390C7> /Users/USER/*/lunar-791aa94f-639a6572.eln
       0x16679f000 -        0x1667b2fff +solar-41ca7795-01cf3f0b.eln (0) <B45B858C-305B-396E-9832-F86B29C2CF1E> /Users/USER/*/solar-41ca7795-01cf3f0b.eln
       0x1667bf000 -        0x1667c6fff +cal-dst-f85a5a15-829f6b65.eln (0) <40AC18D4-5D03-3E74-8535-2C60344E2253> /Users/USER/*/cal-dst-f85a5a15-829f6b65.eln
       0x1667d3000 -        0x1667dafff +find-func-64af57a4-bd98a648.eln (0) <BAB1FCF4-18E4-33AA-88C9-14C719E6A090> /Users/USER/*/find-func-64af57a4-bd98a648.eln
       0x1667eb000 -        0x166826fff +org-table-648bb669-d5567124.eln (0) <687FBEAE-B1C8-3401-BF07-818947DF9CE6> /Users/USER/*/org-table-648bb669-d5567124.eln
       0x16685f000 -        0x166862fff +ob-emacs-lisp-16286692-a9586f5d.eln (0) <8123A0B9-AE34-3AE9-B644-23D0996E9D78> /Users/USER/*/ob-emacs-lisp-16286692-a9586f5d.eln
       0x16686b000 -        0x166876fff +outline-afc41f82-c5d0d4ae.eln (0) <B382DA66-28F5-32B9-A721-169CCB56BAB3> /Users/USER/*/outline-afc41f82-c5d0d4ae.eln
       0x16688b000 -        0x166892fff +time-date-40951a48-4c66ce88.eln (0) <CD3BF27C-8F3D-3083-818E-6A188E7D0F34> /Users/USER/*/time-date-40951a48-4c66ce88.eln
       0x16689f000 -        0x1668a2fff +org-entities-59651570-14ef9d97.eln (0) <74D5D0B6-7AE5-3B3B-A75C-E9A6A12993F7> /Users/USER/*/org-entities-59651570-14ef9d97.eln
       0x1668af000 -        0x1668b2fff +org-faces-fb159ea2-111d0088.eln (0) <9D75E9B2-E322-37BD-8B70-C12C6F736967> /Users/USER/*/org-faces-fb159ea2-111d0088.eln
       0x1668bf000 -        0x1668defff +org-list-5f5f2580-a3ba9971.eln (0) <76D35580-CF9E-3AB2-BCEA-76E6B28E128C> /Users/USER/*/org-list-5f5f2580-a3ba9971.eln
       0x1668ff000 -        0x166906fff +org-pcomplete-0204f4b4-fb2efbae.eln (0) <8BF8629D-98C2-3457-BCE4-8A51A5EE5EF9> /Users/USER/*/org-pcomplete-0204f4b4-fb2efbae.eln
       0x16690f000 -        0x16691afff +pcomplete-81dbd8b0-3dbd22ec.eln (0) <B7C9EDAC-78DD-3EA2-8EF0-E152CC80E4EF> /Users/USER/*/pcomplete-81dbd8b0-3dbd22ec.eln
       0x16692f000 -        0x16693afff +org-footnote-25de1911-5ef2b974.eln (0) <8FA63B20-C5A8-3434-B599-87C385952481> /Users/USER/*/org-footnote-25de1911-5ef2b974.eln
       0x16694b000 -        0x166952fff +org-macro-8a8dd56c-4d273c20.eln (0) <7CA80E5C-4C03-3D46-8345-A873E93B44BD> /Users/USER/*/org-macro-8a8dd56c-4d273c20.eln
       0x16695f000 -        0x166962fff +org-yt-005ca0dc-73b9a7ba.eln (0) <37431E3C-5B85-3004-A6FD-80BF886AA21B> /Users/USER/*/org-yt-005ca0dc-73b9a7ba.eln
       0x16696b000 -        0x1669a6fff +org-element-a5edf8d5-88e8136d.eln (0) <436BC162-EFA1-3D84-A0C9-4AC3C3D20E15> /Users/USER/*/org-element-a5edf8d5-88e8136d.eln
       0x1669d7000 -        0x1669e2fff +avl-tree-508a9d96-47b53d71.eln (0) <361F3738-6408-3731-8A06-5492263067DA> /Users/USER/*/avl-tree-508a9d96-47b53d71.eln
       0x1669f3000 -        0x1669fefff +generator-184aa77f-b4b19921.eln (0) <9AE87904-EAF9-322E-82EC-4CDF6337C3C9> /Users/USER/*/generator-184aa77f-b4b19921.eln
       0x166a0b000 -        0x166a12fff +orgit-72aff839-195e4dfb.eln (0) <1FBC2847-62E7-3A42-97C5-8D0C1B70CD4A> /Users/USER/*/orgit-72aff839-195e4dfb.eln
       0x166a1f000 -        0x166a26fff +magit-1420c20f-ce325a81.eln (0) <17283AE1-0219-3503-8A2E-8005FC85F5B3> /Users/USER/*/magit-1420c20f-ce325a81.eln
       0x166a37000 -        0x166a3afff +magit-core-848946dd-870d9a5c.eln (0) <98A099C5-E8FD-39CE-81A0-72AA0B04008B> /Users/USER/*/magit-core-848946dd-870d9a5c.eln
       0x166a43000 -        0x166a4efff +magit-utils-ce93fc81-e8ffd224.eln (0) <338D9EC3-AA86-3F2A-AFC2-7F0609AC59FC> /Users/USER/*/magit-utils-ce93fc81-e8ffd224.eln
       0x166a63000 -        0x166a8afff +dash-c5397f8d-82fea3ab.eln (0) <AE805E3E-867A-3823-9B7E-DE070E11A992> /Users/USER/*/dash-c5397f8d-82fea3ab.eln
       0x166abf000 -        0x166acafff +eieio-0db8d1d4-6987e8ca.eln (0) <3A4D9EE8-BE10-3866-9B3B-74504E6881F8> /Users/USER/*/eieio-0db8d1d4-6987e8ca.eln
       0x166adf000 -        0x166aeafff +eieio-core-63c05904-d094ffa5.eln (0) <D7149D28-3258-3546-985A-BD2D9D0FFBB2> /Users/USER/*/eieio-core-63c05904-d094ffa5.eln
       0x166aff000 -        0x166b02fff +crm-f08665f2-d83e4dfd.eln (0) <C90DE550-6756-3480-B330-C0CC7EF45670> /Users/USER/*/crm-f08665f2-d83e4dfd.eln
       0x166b0b000 -        0x166b1efff +magit-section-a115c8e3-7efcc292.eln (0) <160C5D0F-B8E9-3519-9F9F-9796C7B97EC8> /Users/USER/*/magit-section-a115c8e3-7efcc292.eln
       0x166b3f000 -        0x166b62fff +magit-git-d7cc8102-ab757e4e.eln (0) <1E8EA229-81B6-353D-9A0E-B53E14388CF8> /Users/USER/*/magit-git-d7cc8102-ab757e4e.eln
       0x166b8b000 -        0x166b96fff +magit-mode-2b64eacc-05748551.eln (0) <725A533C-03E7-322A-A011-594F4D53E165> /Users/USER/*/magit-mode-2b64eacc-05748551.eln
       0x166baf000 -        0x166bd2fff +transient-2f0853ef-faa8a728.eln (0) <7163F66E-8DD6-3673-909C-B49634CB65C3> /Users/USER/*/transient-2f0853ef-faa8a728.eln
       0x166c0b000 -        0x166c0efff +subr--trampoline-61626f72742d7265637572736976652d65646974_abort_recursive_edit_0.eln (0) <5E250917-4AED-34C0-9BAF-6FC6778D4CFC> /Users/USER/*/subr--trampoline-61626f72742d7265637572736976652d65646974_abort_recursive_edit_0.eln
       0x166c17000 -        0x166c1afff +subr--trampoline-746f702d6c6576656c_top_level_0.eln (0) <F815F0B0-F763-36DC-BF6C-2B672D2F77B3> /Users/USER/*/subr--trampoline-746f702d6c6576656c_top_level_0.eln
       0x166c23000 -        0x166c26fff +magit-margin-83eade2c-0fecfd2b.eln (0) <27476627-7A68-324E-BC53-F0792443CAE3> /Users/USER/*/magit-margin-83eade2c-0fecfd2b.eln
       0x166c2f000 -        0x166c32fff +magit-transient-61605ebf-c6055ffe.eln (0) <8673B8CE-EEA3-30E2-AEE9-336B83EF5627> /Users/USER/*/magit-transient-61605ebf-c6055ffe.eln
       0x166c3b000 -        0x166c4afff +magit-process-8ce18819-41d48362.eln (0) <85B7DB84-712A-3716-894D-D295EF02E907> /Users/USER/*/magit-process-8ce18819-41d48362.eln
       0x166c5f000 -        0x166c6efff +server-0cc44189-d3dba6d6.eln (0) <2A6D56D8-FEB0-39A2-BFFF-436B9D462B2F> /Users/USER/*/server-0cc44189-d3dba6d6.eln
       0x166c83000 -        0x166c8efff +shell-57930f41-6da7463c.eln (0) <531EB821-4E11-3D73-9AC4-B2E2C7F3CC21> /Users/USER/*/shell-57930f41-6da7463c.eln
       0x166ca3000 -        0x166ca6fff +subr--trampoline-6d616b652d70726f63657373_make_process_0.eln (0) <8DAC1804-CC5C-3CA0-8682-11B57A7F89E6> /Users/USER/*/subr--trampoline-6d616b652d70726f63657373_make_process_0.eln
       0x166caf000 -        0x166cb2fff +magit-autorevert-d4584dd6-f00f2224.eln (0) <4B478B07-7E5B-3905-9F42-9A1DFF942863> /Users/USER/*/magit-autorevert-d4584dd6-f00f2224.eln
       0x167166000 -        0x167169fff +nav-flash-696b08ef-b5deabef.eln (0) <5EDE995A-7F2C-3358-B7A7-12E287A387D4> /Users/USER/*/nav-flash-696b08ef-b5deabef.eln
       0x167172000 -        0x167175fff +pulse-35e729a5-7546d003.eln (0) <371B7B3D-720F-3D34-8272-6A53A392AC67> /Users/USER/*/pulse-35e729a5-7546d003.eln
       0x167182000 -        0x167189fff +color-9d7980a5-ed707236.eln (0) <09662D86-8C67-3615-A786-32737AA4233F> /Users/USER/*/color-9d7980a5-ed707236.eln
       0x167192000 -        0x167199fff +autorevert-841d6890-d8d28dc1.eln (0) <4D93AA69-6BB2-3A5F-AF8D-9C49D882871C> /Users/USER/*/autorevert-841d6890-d8d28dc1.eln
       0x1671aa000 -        0x1671b1fff +filenotify-65939d6e-ace796f3.eln (0) <495AE66D-7B54-3229-A720-5FF569653384> /Users/USER/*/filenotify-65939d6e-ace796f3.eln
    0x7fff2004b000 -     0x7fff2004cfff  libsystem_blocks.dylib (79) <925E3B6D-184D-3E73-97B1-643C4ADB387A> /usr/lib/system/libsystem_blocks.dylib
    0x7fff2004d000 -     0x7fff20082fff  libxpc.dylib (2038.120.1) <FFFB49D7-2CA6-3E1F-AE4E-5697B19B7D76> /usr/lib/system/libxpc.dylib
    0x7fff20083000 -     0x7fff2009afff  libsystem_trace.dylib (1277.120.1) <7E800ECA-DFDB-3737-A3C5-FFDE37E65383> /usr/lib/system/libsystem_trace.dylib
    0x7fff2009b000 -     0x7fff20138fff  libcorecrypto.dylib (1000.140.4) <D211160D-E22F-3440-8054-1F5824519C7F> /usr/lib/system/libcorecrypto.dylib
    0x7fff20139000 -     0x7fff20165fff  libsystem_malloc.dylib (317.140.5) <050E37E1-1458-3F80-BFA3-F1488570169D> /usr/lib/system/libsystem_malloc.dylib
    0x7fff20166000 -     0x7fff201aafff  libdispatch.dylib (1271.120.2) <8144B0BD-90D2-3EAE-999F-AB0D14082088> /usr/lib/system/libdispatch.dylib
    0x7fff201ab000 -     0x7fff201e4fff  libobjc.A.dylib (824) <8C7C49A1-4211-3E4C-BA3D-160D675EEE96> /usr/lib/libobjc.A.dylib
    0x7fff201e5000 -     0x7fff201e7fff  libsystem_featureflags.dylib (28.60.1) <E5C43AE3-19E7-3DAB-8B5D-D79A4B68B5C0> /usr/lib/system/libsystem_featureflags.dylib
    0x7fff201e8000 -     0x7fff20270fff  libsystem_c.dylib (1439.141.1) <3C273899-4CBE-32D5-BB31-7A449743204F> /usr/lib/system/libsystem_c.dylib
    0x7fff20271000 -     0x7fff202c6fff  libc++.1.dylib (905.6) <FD6DB1CB-B14B-3404-8BEB-B459C2F6C303> /usr/lib/libc++.1.dylib
    0x7fff202c7000 -     0x7fff202dcfff  libc++abi.dylib (905.6) <D0CDDF98-1C04-300F-B685-4A4C59C04C42> /usr/lib/libc++abi.dylib
    0x7fff202dd000 -     0x7fff2030cfff  libsystem_kernel.dylib (7195.141.6) <78289AAE-61B5-339F-A485-8819BC2388F2> /usr/lib/system/libsystem_kernel.dylib
    0x7fff2030d000 -     0x7fff20318fff  libsystem_pthread.dylib (454.120.2) <1268FF2D-A513-3B51-BA65-AF2FF5789DDB> /usr/lib/system/libsystem_pthread.dylib
    0x7fff20319000 -     0x7fff20354fff  libdyld.dylib (852.2) <3DE0178A-0AEE-3D08-AE19-6C6403F69BA1> /usr/lib/system/libdyld.dylib
    0x7fff20355000 -     0x7fff2035efff  libsystem_platform.dylib (254.80.2) <EF52D569-09F5-32E1-B1B3-34E2CA55A017> /usr/lib/system/libsystem_platform.dylib
    0x7fff2035f000 -     0x7fff2038afff  libsystem_info.dylib (542.40.3) <55B39B7F-957B-3D99-A8DF-7CA80D38155D> /usr/lib/system/libsystem_info.dylib
    0x7fff2038b000 -     0x7fff20828fff  com.apple.CoreFoundation (6.9 - 1778.101) <8CF9D741-ADFF-3D5E-ACDE-DC342701EE0D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff20829000 -     0x7fff20a5efff  com.apple.LaunchServices (1122.44 - 1122.44) <C285E620-3D2F-3AD0-8A3D-BB1FC540FE44> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff20a5f000 -     0x7fff20b33fff  com.apple.gpusw.MetalTools (1.0 - 1) <C41024C5-01E7-3A66-A1F8-D7BC767260D8> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff20b34000 -     0x7fff20d90fff  libBLAS.dylib (1336.140.1) <170AFA22-1234-3DE9-9D94-52B3BE18E34E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff20d91000 -     0x7fff20ddefff  com.apple.Lexicon-framework (1.0 - 86.2) <B7047A55-806D-3B32-A2D6-885D824E54A6> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff20ddf000 -     0x7fff20e4dfff  libSparse.dylib (106) <1E68BF64-7432-3509-BC85-5DE95379E901> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff20e4e000 -     0x7fff20ecbfff  com.apple.SystemConfiguration (1.20 - 1.20) <8FEB39D4-ACD6-39F2-8D1B-A57CACD5628F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff20ecc000 -     0x7fff20f00fff  libCRFSuite.dylib (50) <BCDD0ED1-D2F4-3556-B218-4420C7EA47D2> /usr/lib/libCRFSuite.dylib
    0x7fff20f01000 -     0x7fff21139fff  libmecabra.dylib (929.10) <D780814D-2BB2-3D84-820E-12E4C23C590E> /usr/lib/libmecabra.dylib
    0x7fff2113a000 -     0x7fff21498fff  com.apple.Foundation (6.9 - 1778.101) <7B7FB88B-01D3-38CE-8029-837DB094C545> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff21499000 -     0x7fff21581fff  com.apple.LanguageModeling (1.0 - 247.3) <DBFAE8CF-36B2-30D8-9E82-6C412CD935B4> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff21582000 -     0x7fff216b8fff  com.apple.CoreDisplay (237.4 - 237.4) <556BADE0-D3B0-309C-9740-7FEFBD052B6B> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff216b9000 -     0x7fff21929fff  com.apple.audio.AudioToolboxCore (1.0 - 1181.72) <5C3B84EE-B281-34C4-832F-78F00CC63B93> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore
    0x7fff2192a000 -     0x7fff21b0ffff  com.apple.CoreText (677.6.0.2 - 677.6.0.2) <10E1382E-7949-3F4E-8B15-A4BD31A75E91> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff21b10000 -     0x7fff221a1fff  com.apple.audio.CoreAudio (5.0 - 5.0) <5EEA9225-4837-37F3-9105-941A5743169F> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff221a2000 -     0x7fff224f9fff  com.apple.security (7.0 - 59754.140.13) <A196C85A-DB28-3F5B-A415-5BE44AD81668> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff224fa000 -     0x7fff22759fff  libicucore.A.dylib (66112) <AC994BC1-F9CC-359C-A7B5-F2821EAEF650> /usr/lib/libicucore.A.dylib
    0x7fff2275a000 -     0x7fff22763fff  libsystem_darwin.dylib (1439.141.1) <2C81A009-45BB-30D7-A4F7-4B2EEC691617> /usr/lib/system/libsystem_darwin.dylib
    0x7fff22764000 -     0x7fff22a4ffff  com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <2C65E0D8-A9C7-31D8-A3D3-3AC1A91C80A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff22a50000 -     0x7fff22a8efff  com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <3FC6073F-78E4-3D3B-8765-50E50512C5EB> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff22a8f000 -     0x7fff22ac9fff  com.apple.CSStore (1122.44 - 1122.44) <C103DAAA-A966-359B-97F0-BA3BB56ECBF1> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore
    0x7fff22aca000 -     0x7fff22b78fff  com.apple.framework.IOKit (2.0.2 - 1845.120.6) <720D9AE1-79D6-3E77-8D7A-47F8F6681050> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff22b79000 -     0x7fff22b84fff  libsystem_notify.dylib (279.40.4) <2E40EA4A-B124-3010-8379-1B4D7082A08F> /usr/lib/system/libsystem_notify.dylib
    0x7fff22b85000 -     0x7fff22bd2fff  libsandbox.1.dylib (1441.141.4) <C291C059-F7E4-3C20-BCBF-60F7011F0718> /usr/lib/libsandbox.1.dylib
    0x7fff22bd3000 -     0x7fff2391efff  com.apple.AppKit (6.9 - 2022.60.128) <02EC69A0-D634-341B-BE3D-840F496F5814> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff2391f000 -     0x7fff23b6dfff  com.apple.UIFoundation (1.0 - 728.9) <C2E04F0F-AEAA-3B77-9BBA-1CF628341A56> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff23b6e000 -     0x7fff23b80fff  com.apple.UniformTypeIdentifiers (637 - 637) <8FFD3B69-0840-34D6-83AD-7D521B1A2339> /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers
    0x7fff23b81000 -     0x7fff23d0bfff  com.apple.desktopservices (1.21 - 1346.6.1) <F2C97567-5B56-3840-A384-2131E362083B> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff23feb000 -     0x7fff24671fff  libnetwork.dylib (2288.140.7) <42825FCA-35A1-352F-AE68-19D8F695604B> /usr/lib/libnetwork.dylib
    0x7fff24672000 -     0x7fff24b10fff  com.apple.CFNetwork (1240.0.4 - 1240.0.4) <E4BF9BFF-798B-33FF-B37D-6D8175CA708A> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff24b11000 -     0x7fff24b1ffff  libsystem_networkextension.dylib (1295.140.3) <83AA4425-2F1D-36EC-B77B-8D4F03CDDB68> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff24b20000 -     0x7fff24b20fff  libenergytrace.dylib (22.100.1) <9E877E0A-5261-3F75-91A0-521423499AD0> /usr/lib/libenergytrace.dylib
    0x7fff24b21000 -     0x7fff24b7dfff  libMobileGestalt.dylib (978.140.1) <D1FF79C3-4B2F-32FB-BF25-9F0B9E160692> /usr/lib/libMobileGestalt.dylib
    0x7fff24b7e000 -     0x7fff24b94fff  libsystem_asl.dylib (385) <8D324D65-EE16-3A1A-BD39-ACB1B3050D1F> /usr/lib/system/libsystem_asl.dylib
    0x7fff24b95000 -     0x7fff24badfff  com.apple.TCC (1.0 - 1) <18F48712-FFF0-3B30-B2C4-8A93AEF86A34> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff24bae000 -     0x7fff24f13fff  com.apple.SkyLight (1.600.0 - 588.7) <5F88F814-A3DF-3446-8B35-F0CDD8C1B302> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff24f14000 -     0x7fff2559dfff  com.apple.CoreGraphics (2.0 - 1463.17.3) <5EDF86BC-FFDE-3906-9674-142C113B34EF> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff2559e000 -     0x7fff25694fff  com.apple.ColorSync (4.13.0 - 3473.4.3) <102C423C-E05F-317B-83AE-A2A6B77D653B> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff25695000 -     0x7fff256f0fff  com.apple.HIServices (1.22 - 716) <B2D34F3F-0CEB-35F1-9B32-E0806CF3FC91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff256f1000 -     0x7fff2572ffff  libAWDSupport.dylib (951) <F10D0972-6D3C-325B-A977-48E0EC6B087D> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib
    0x7fff25730000 -     0x7fff2578cfff  libprotobuf.dylib (4205) <25B06010-4F03-3B97-873E-94410285D572> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
    0x7fff2578d000 -     0x7fff2579efff  libprotobuf-lite.dylib (4205) <035E309C-861F-393B-BB10-D8C42F63E6F6> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
    0x7fff2579f000 -     0x7fff257e3fff  com.apple.awd (1.0 - 951) <950DBA92-CC7B-3355-BAEE-083FFFBDF500> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
    0x7fff25a97000 -     0x7fff25eb6fff  com.apple.CoreData (120 - 1048) <33DE1B26-D4C6-3939-B12E-88897660BB38> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff25eb7000 -     0x7fff25eccfff  com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <AEDEFF64-CA8A-365C-900F-3107383F91D9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff25ecd000 -     0x7fff26080fff  libsqlite3.dylib (321.3) <E7377C46-DA4F-3486-B935-0A35C3637215> /usr/lib/libsqlite3.dylib
    0x7fff26081000 -     0x7fff260fdfff  com.apple.Accounts (113 - 113) <2AD45648-B327-313A-ACF2-846FB345A96E> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff260fe000 -     0x7fff26115fff  com.apple.commonutilities (8.0 - 900) <98B456F4-8F4F-387B-B3BB-D3919295AE1D> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff26116000 -     0x7fff26195fff  com.apple.BaseBoard (526 - 526) <F9D85C3A-D0D6-351B-A6EE-5416CB90179D> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff26196000 -     0x7fff261defff  com.apple.RunningBoardServices (1.0 - 505.100.9) <2ED406CD-2253-33F0-B16A-694DB447CADC> /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices
    0x7fff261df000 -     0x7fff26253fff  com.apple.AE (918.6 - 918.6) <C5130BB4-18E7-3804-A9D9-915D318426A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff26254000 -     0x7fff2625afff  libdns_services.dylib (1310.140.1) <22BE5030-2F48-3ED6-9DF8-9D102CEF33FF> /usr/lib/libdns_services.dylib
    0x7fff2625b000 -     0x7fff26262fff  libsystem_symptoms.dylib (1431.140.1) <1B4D8837-C951-3B69-B079-85D477749E8B> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff26263000 -     0x7fff263eefff  com.apple.Network (1.0 - 1) <2155E1AA-2067-36CF-979E-2F96062D5CFE> /System/Library/Frameworks/Network.framework/Versions/A/Network
    0x7fff263ef000 -     0x7fff2641efff  com.apple.analyticsd (1.0 - 1) <0DF60ECD-742C-39D1-964A-48EC3DEA6319> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff2641f000 -     0x7fff26421fff  libDiagnosticMessagesClient.dylib (112) <A7EC7265-E13C-3C98-81EE-3EFB5CC65AB0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff26422000 -     0x7fff2646efff  com.apple.spotlight.metadata.utilities (1.0 - 2150.26) <F709AE5E-AF80-3C9B-A3D3-B779164FBA95> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff2646f000 -     0x7fff26509fff  com.apple.Metadata (10.7.0 - 2150.26) <D7CE41CA-DDE7-32BE-926C-0DC3048C5E11> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff2650a000 -     0x7fff26510fff  com.apple.DiskArbitration (2.7 - 2.7) <8DF059B4-BE32-3171-8CC4-C5FA189FA718> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff26511000 -     0x7fff26b78fff  com.apple.vImage (8.1 - 544.4) <E62F9E4F-9A1D-3004-B7F4-6F83F71144C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff26b79000 -     0x7fff26e56fff  com.apple.QuartzCore (1.11 - 927.24) <88794856-F1F1-3D23-BDDB-0AE28A1D6D6E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff26e57000 -     0x7fff26e98fff  libFontRegistry.dylib (309) <300F2208-7274-38F8-B88D-9237BA6B397E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff26e99000 -     0x7fff26fd9fff  com.apple.coreui (2.1 - 692.1) <BC5D8EAA-7CE8-35F3-8EAD-075B18D9606C> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff26fda000 -     0x7fff270c5fff  com.apple.ViewBridge (553.1 - 553.1) <DF83EA6E-4DA9-3322-BE86-0B3207167451> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff270c6000 -     0x7fff270d1fff  com.apple.PerformanceAnalysis (1.278.3 - 278.3) <6AF20F05-FF15-3174-A504-1AC16BA14729> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff270d2000 -     0x7fff270e1fff  com.apple.OpenDirectory (11.6 - 230.40.1) <84B2D11F-E6C4-3C29-9A9A-939DB906E2F5> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff270e2000 -     0x7fff27101fff  com.apple.CFOpenDirectory (11.6 - 230.40.1) <6BE3204F-2F86-34A7-AD79-4C88320F446F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff27102000 -     0x7fff2710efff  com.apple.CoreServices.FSEvents (1290.120.5 - 1290.120.5) <DC473A17-310F-3C16-B545-F75CE3F6D39D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff2710f000 -     0x7fff27133fff  com.apple.coreservices.SharedFileList (144 - 144) <A13B58B8-6D7A-3F1B-AFB5-E41E0A6B4B81> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff27134000 -     0x7fff27136fff  libapp_launch_measurement.dylib (14.1) <511EC2A9-6059-3A7D-9D2A-741189922D02> /usr/lib/libapp_launch_measurement.dylib
    0x7fff27137000 -     0x7fff2717efff  com.apple.CoreAutoLayout (1.0 - 21.10.1) <18113C8E-B54E-3DD3-A1AD-2A5FD949CE66> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout
    0x7fff2717f000 -     0x7fff27261fff  libxml2.2.dylib (34.10) <DD2093F0-F9B7-3F30-B46D-B028CE15E2B1> /usr/lib/libxml2.2.dylib
    0x7fff27262000 -     0x7fff272affff  com.apple.CoreVideo (1.8 - 414.7) <EE991A40-DE38-3B13-891E-A51987D5CD70> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff272b0000 -     0x7fff272b2fff  com.apple.loginsupport (1.0 - 1) <4C358D8E-4BB8-3DD8-8A72-11BD80607BDE> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff272b3000 -     0x7fff272dafff  com.apple.aps.framework (4.0 - 4.0) <A76C4B82-24CD-3AF4-BADD-6135F6E7057A> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff272db000 -     0x7fff272f6fff  com.apple.UserManagement (1.0 - 1) <FB298359-31F5-3DDD-B928-604C4B1ED1F3> /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement
    0x7fff272f7000 -     0x7fff27488fff  com.apple.cloudkit.CloudKit (990 - 990) <A4ADF4E3-AC2D-322B-B76C-BC249AB27395> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff2789b000 -     0x7fff281ecfff  libwebrtc.dylib (7611.3.10.1.6) <CBCA9241-7714-378B-97C6-5D404C6284A7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
    0x7fff281ed000 -     0x7fff28269fff  com.apple.corelocation (2420.19.23 - 2420.19.23) <1BEB1A0D-4122-3F8C-AC1A-07A12C36C84F> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff2826a000 -     0x7fff2827afff  libsystem_containermanager.dylib (318.100.4) <1139CD47-9CBA-356F-8694-1D00EB9F0C8F> /usr/lib/system/libsystem_containermanager.dylib
    0x7fff2827b000 -     0x7fff2828cfff  com.apple.IOSurface (290.8.1 - 290.8.1) <8B251196-DA38-38BF-8A91-45AC2B06014C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff2828d000 -     0x7fff28296fff  com.apple.IOAccelerator (442.9 - 442.9) <F2C3DC87-49D7-3A67-8E6D-12D75D98EFDD> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff28297000 -     0x7fff283bafff  com.apple.Metal (244.303 - 244.303) <71B6039E-232E-3AD2-881F-DF8E73C75B99> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff283bb000 -     0x7fff283d7fff  com.apple.audio.caulk (1.0 - 70) <F6A09FF3-1DC7-302C-86E3-B2DD9B7130A9> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk
    0x7fff283d8000 -     0x7fff284c2fff  com.apple.CoreMedia (1.0 - 2780.10) <6A003180-F8AA-3DFA-B095-61D8E859FE3F> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff284c3000 -     0x7fff2861ffff  libFontParser.dylib (305.6.0.4) <C3E552F6-72AD-3F3A-B217-E44A5C565240> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
    0x7fff28620000 -     0x7fff2891bfff  com.apple.HIToolbox (2.1.1 - 1062) <DEF01A0C-8B9D-359E-9FE7-B15D551888DC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff2891c000 -     0x7fff2892ffff  com.apple.framework.DFRFoundation (1.0 - 267) <EBFDDB28-7661-3B50-BC15-736C5DF05AB3> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff28930000 -     0x7fff28933fff  com.apple.dt.XCTTargetBootstrap (1.0 - 18119.1) <DD9E09C3-B658-3BD2-8229-E3E3C5D85552> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff28934000 -     0x7fff2895dfff  com.apple.CoreSVG (1.0 - 149) <C4DC952A-9373-33E5-8A98-F008986B0420> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG
    0x7fff2895e000 -     0x7fff28b9afff  com.apple.ImageIO (3.3.0 - 2130.7.3) <28C6A501-2548-3187-A13B-9F314280BBB8> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff28b9b000 -     0x7fff28f16fff  com.apple.CoreImage (16.3.0 - 1140.2) <3ED3F244-632C-383D-89B0-50F2E0FDBA40> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff28f17000 -     0x7fff28f7dfff  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <C12F8828-6D1E-3820-BBF7-80EEA978AE9C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff28f7e000 -     0x7fff28f81fff  libsystem_configuration.dylib (1109.140.1) <02F3A5C9-6289-3012-8F5F-F1DB669ADB79> /usr/lib/system/libsystem_configuration.dylib
    0x7fff28f82000 -     0x7fff28f86fff  libsystem_sandbox.dylib (1441.141.4) <5471601B-5072-3E97-8926-804FF08DC4C0> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff28f87000 -     0x7fff28f88fff  com.apple.AggregateDictionary (1.0 - 1) <B25A1764-0BBC-388B-8FB4-A8FBB8F51C10> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff28f89000 -     0x7fff28f8cfff  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <4A803F86-CA61-3508-864A-302F032ADA70> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff28f8d000 -     0x7fff28f8efff  liblangid.dylib (136) <F4019132-A63D-3A38-A8DB-974C6F1311ED> /usr/lib/liblangid.dylib
    0x7fff28f8f000 -     0x7fff29033fff  com.apple.CoreNLP (1.0 - 245.2) <203C6AB9-5B07-3370-A056-DA1F2C8A8419> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff29034000 -     0x7fff2903afff  com.apple.LinguisticData (1.0 - 399) <AB85B59F-3047-37EC-AB9E-835D87BACF73> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff2903b000 -     0x7fff296e3fff  libBNNS.dylib (288.100.5) <4BB7A1B7-D1F2-3DC3-BFC7-D57CBD892719> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff296e4000 -     0x7fff298b6fff  libvDSP.dylib (760.100.3) <DA809F3E-9391-3BE0-98C6-061CCACA809A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff298b7000 -     0x7fff298c8fff  com.apple.CoreEmoji (1.0 - 128.4) <8DB42230-A624-3C13-80F8-EC2CE89C0699> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff298c9000 -     0x7fff298d3fff  com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <195E20E7-33BD-3935-92ED-AA354180B7FA> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer
    0x7fff298d4000 -     0x7fff299a6fff  com.apple.framework.CoreWLAN (16.0 - 1657) <0A58C97E-2ACD-3223-8585-FDA5DA4C38C5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff299a7000 -     0x7fff29ba8fff  com.apple.CoreUtils (6.6 - 660.37) <0B1ED18A-B228-3840-A0F2-23AC2C37A6CA> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff29ba9000 -     0x7fff29bcbfff  com.apple.MobileKeyBag (2.0 - 1.0) <19D8140C-CC92-35E8-AF78-B335567A7C24> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff29bcc000 -     0x7fff29bdcfff  com.apple.AssertionServices (1.0 - 505.100.9) <850AE031-A3B3-30C0-81A1-71FBCE620BC1> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff29bdd000 -     0x7fff29c68fff  com.apple.securityfoundation (6.0 - 55240.40.4) <A7D05091-B54C-317A-81FE-4B174C968C5A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff29c69000 -     0x7fff29c72fff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <98B365F9-8E0C-32C7-AC5A-FFB9A4A0B30A> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff29c73000 -     0x7fff29c77fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7D081389-0032-3521-A3D9-84B4667817FB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff29c78000 -     0x7fff29c7afff  libquarantine.dylib (119.40.2) <3244B57B-9FDF-373E-9F96-A7BAD7534F23> /usr/lib/system/libquarantine.dylib
    0x7fff29c7b000 -     0x7fff29c86fff  libCheckFix.dylib (31) <AAB549BA-1738-33FD-BBC4-C34B5070C309> /usr/lib/libCheckFix.dylib
    0x7fff29c87000 -     0x7fff29c9efff  libcoretls.dylib (169.100.1) <FC2811AD-9D76-3403-B760-32A101D07638> /usr/lib/libcoretls.dylib
    0x7fff29c9f000 -     0x7fff29caffff  libbsm.0.dylib (68.40.1) <61577B7F-2C06-365C-9039-E00B0B5258D0> /usr/lib/libbsm.0.dylib
    0x7fff29cb0000 -     0x7fff29cf9fff  libmecab.dylib (929.10) <D60C5095-3A5F-3284-9699-08C76DA29CBD> /usr/lib/libmecab.dylib
    0x7fff29cfa000 -     0x7fff29cfffff  libgermantok.dylib (24) <6F2B01E8-6077-3B72-91F3-AB6D0FCB15D6> /usr/lib/libgermantok.dylib
    0x7fff29d00000 -     0x7fff29d15fff  libLinearAlgebra.dylib (1336.140.1) <A450756D-D3AC-342D-A802-ED6C554A494A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff29d16000 -     0x7fff29f34fff  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <8AAFA6C5-1FBD-359A-8774-F1D1FBFCCFFE> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff29f35000 -     0x7fff29f84fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <0C854684-1D62-35D1-83C1-9066DB158189> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff29f85000 -     0x7fff2a0e6fff  com.apple.MLCompute (1.0 - 1) <9255AB44-3AB5-3F3F-8FA2-77FEA1C7C221> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute
    0x7fff2a0e7000 -     0x7fff2a11dfff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <B7361691-334A-3A33-98E1-A9A623E5D26A> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff2a11e000 -     0x7fff2a174fff  com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) <706E8171-48B3-33A3-B55B-35B5F86F3043> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray
    0x7fff2a175000 -     0x7fff2a205fff  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <3999E177-7A40-358A-BE89-1F20ADF13740> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff2a206000 -     0x7fff2a215fff  com.apple.AppleFSCompression (125 - 1.0) <F7163A3A-C4F0-3169-9501-B9AAB8CAE9CD> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff2a216000 -     0x7fff2a222fff  libbz2.1.0.dylib (44) <ECD22F5B-FD6C-39A5-884B-418C6B896263> /usr/lib/libbz2.1.0.dylib
    0x7fff2a223000 -     0x7fff2a227fff  libsystem_coreservices.dylib (127.1) <619CCB6D-226C-35BD-98FB-04A18FD54792> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff2a228000 -     0x7fff2a255fff  com.apple.CoreServices.OSServices (1122.44 - 1122.44) <C547575F-985F-31B8-A61C-79D3A673B8D9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff2a256000 -     0x7fff2a385fff  com.apple.AuthKit (1.0 - 1) <C72D7981-A3B6-3883-A14F-43485DF54FC4> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff2a424000 -     0x7fff2a436fff  libz.1.dylib (76) <F805C1CB-1B80-33D0-994C-1D522D347A68> /usr/lib/libz.1.dylib
    0x7fff2a437000 -     0x7fff2a47efff  libsystem_m.dylib (3186.100.3) <D61B56FE-649B-34A0-8446-25685B2BBBF2> /usr/lib/system/libsystem_m.dylib
    0x7fff2a47f000 -     0x7fff2a47ffff  libcharset.1.dylib (59) <363A6C40-7446-3A72-B5EA-4731843CFE2F> /usr/lib/libcharset.1.dylib
    0x7fff2a480000 -     0x7fff2a485fff  libmacho.dylib (980) <A4F4D532-7824-3E4E-8FB6-45617415E7DD> /usr/lib/system/libmacho.dylib
    0x7fff2a486000 -     0x7fff2a4a1fff  libkxld.dylib (7195.141.6) <1121F83B-5D42-368B-B440-100418CD4B23> /usr/lib/system/libkxld.dylib
    0x7fff2a4a2000 -     0x7fff2a4adfff  libcommonCrypto.dylib (60178.120.3) <CF1E0E70-9F6C-3FAF-82B2-D55F7C9EBB03> /usr/lib/system/libcommonCrypto.dylib
    0x7fff2a4ae000 -     0x7fff2a4b8fff  libunwind.dylib (201) <4602E909-C71A-3006-8140-BE616DA241EE> /usr/lib/system/libunwind.dylib
    0x7fff2a4b9000 -     0x7fff2a4c0fff  liboah.dylib (203.58) <F72C2D50-7279-3497-8A59-56908F9661F3> /usr/lib/liboah.dylib
    0x7fff2a4c1000 -     0x7fff2a4cbfff  libcopyfile.dylib (173.40.2) <B0F35A80-D5E3-33DD-A47D-ACBFE1300523> /usr/lib/system/libcopyfile.dylib
    0x7fff2a4cc000 -     0x7fff2a4d3fff  libcompiler_rt.dylib (102.2) <1C049207-1719-39AC-A2A9-6E5BE28AA138> /usr/lib/system/libcompiler_rt.dylib
    0x7fff2a4d4000 -     0x7fff2a4d6fff  libsystem_collections.dylib (1439.141.1) <F2D775D9-AAEF-371F-AA54-CFB882B9B430> /usr/lib/system/libsystem_collections.dylib
    0x7fff2a4d7000 -     0x7fff2a4d9fff  libsystem_secinit.dylib (87.60.1) <EB4516ED-1F8B-3E8A-8C4B-B209A33DCCEF> /usr/lib/system/libsystem_secinit.dylib
    0x7fff2a4da000 -     0x7fff2a4dcfff  libremovefile.dylib (49.120.1) <1AEE3D84-32F9-35FB-8036-B178C9E27D20> /usr/lib/system/libremovefile.dylib
    0x7fff2a4dd000 -     0x7fff2a4ddfff  libkeymgr.dylib (31) <698AF6EE-08BB-36CF-B7AD-9EC16E36FA0B> /usr/lib/system/libkeymgr.dylib
    0x7fff2a4de000 -     0x7fff2a4e5fff  libsystem_dnssd.dylib (1310.140.1) <0685BDB0-9A98-3ADD-B95A-11F221FD80D7> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff2a4e6000 -     0x7fff2a4ebfff  libcache.dylib (83) <B51FAB34-AA9C-38C5-95F1-E5E54B21EA67> /usr/lib/system/libcache.dylib
    0x7fff2a4ec000 -     0x7fff2a4edfff  libSystem.B.dylib (1292.120.1) <DBD0A184-CD98-3225-8E9B-D5BFE0D30562> /usr/lib/libSystem.B.dylib
    0x7fff2a4ee000 -     0x7fff2a4f1fff  libfakelink.dylib (3) <BE0E6C60-675A-3739-A47A-67C650B1F790> /usr/lib/libfakelink.dylib
    0x7fff2a4f2000 -     0x7fff2a4f2fff  com.apple.SoftLinking (1.0 - 1) <9E4B6591-74E3-3B36-91C4-851FAA567DAA> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking
    0x7fff2a4f3000 -     0x7fff2a52afff  libpcap.A.dylib (98.100.3) <6DD23455-C0CA-313E-89B5-A45F8CD71C20> /usr/lib/libpcap.A.dylib
    0x7fff2a52b000 -     0x7fff2a61bfff  libiconv.2.dylib (59) <90F749E2-9D2D-3323-A018-31A1F95221A1> /usr/lib/libiconv.2.dylib
    0x7fff2a61c000 -     0x7fff2a62dfff  libcmph.dylib (8) <17871D7D-49C2-3343-AC30-C40E3AD5B2B6> /usr/lib/libcmph.dylib
    0x7fff2a62e000 -     0x7fff2a69ffff  libarchive.2.dylib (83.100.2) <5AF9560E-5683-33A5-8D60-A469193B94E3> /usr/lib/libarchive.2.dylib
    0x7fff2a6a0000 -     0x7fff2a707fff  com.apple.SearchKit (1.4.1 - 1.4.1) <A45AE5BD-9242-351E-B621-3EB50F66AB30> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff2a708000 -     0x7fff2a709fff  libThaiTokenizer.dylib (3) <7B40AC51-B945-3AF0-B349-5818050D37FB> /usr/lib/libThaiTokenizer.dylib
    0x7fff2a70a000 -     0x7fff2a72cfff  com.apple.applesauce (1.0 - 16.28) <7D011403-38CD-37DA-B2C2-00D2D2273422> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff2a72d000 -     0x7fff2a744fff  libapple_nghttp2.dylib (1.41) <E3FCBDB9-6671-3368-B371-B9CAC9BB1B45> /usr/lib/libapple_nghttp2.dylib
    0x7fff2a745000 -     0x7fff2a75bfff  libSparseBLAS.dylib (1336.140.1) <78762464-084C-3743-BC56-A2AF5D010909> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff2a75c000 -     0x7fff2a75dfff  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <BD2B6B2B-E116-3B97-A25F-71B4AC7B2BA6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff2a75e000 -     0x7fff2a762fff  libpam.2.dylib (28.40.1) <E73D1903-42B9-3FF9-AE5D-482672F015AC> /usr/lib/libpam.2.dylib
    0x7fff2a763000 -     0x7fff2a782fff  libcompression.dylib (96.120.1) <CFE780B4-AFB0-327C-BB68-A5565AA7C630> /usr/lib/libcompression.dylib
    0x7fff2a783000 -     0x7fff2a788fff  libQuadrature.dylib (7) <9668C241-61D5-3AE9-9856-708ACDC27F12> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff2a789000 -     0x7fff2ab26fff  libLAPACK.dylib (1336.140.1) <8B968A9A-8263-3639-A740-636387467C03> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff2ab27000 -     0x7fff2ab76fff  com.apple.DictionaryServices (1.2 - 341) <617030DF-769F-3CE0-869F-7F5B9B5A3784> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff2ab77000 -     0x7fff2ab8ffff  liblzma.5.dylib (16) <6DE3F2AA-7140-3F6D-AD12-0DBA19BBBD54> /usr/lib/liblzma.5.dylib
    0x7fff2ab90000 -     0x7fff2ab91fff  libcoretls_cfhelpers.dylib (169.100.1) <0CF72D7A-0A39-3683-82ED-29A09761D6FF> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff2ab92000 -     0x7fff2ac8dfff  com.apple.APFS (1677.141.2 - 1677.141.2) <F42A21D0-F8CE-3DDA-ACE6-C0AC9EE2FA6C> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff2ac8e000 -     0x7fff2ac9bfff  libxar.1.dylib (452) <0B0B68CC-D627-3BDC-AE01-007C6AD8E97B> /usr/lib/libxar.1.dylib
    0x7fff2ac9c000 -     0x7fff2ac9ffff  libutil.dylib (58.40.2) <0EA3237C-B6E6-351B-AE27-8975D88602D6> /usr/lib/libutil.dylib
    0x7fff2aca0000 -     0x7fff2acc8fff  libxslt.1.dylib (17.6) <300C3D2D-19B1-3D8E-B212-1D2EB6C8B80A> /usr/lib/libxslt.1.dylib
    0x7fff2acc9000 -     0x7fff2acd3fff  libChineseTokenizer.dylib (37.1) <B4314553-EF8B-3CD4-A7D8-76CD7FC7142D> /usr/lib/libChineseTokenizer.dylib
    0x7fff2acd4000 -     0x7fff2ad91fff  libvMisc.dylib (760.100.3) <B8F30684-94D1-3A53-80BF-C78F424594AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff2ad92000 -     0x7fff2ae29fff  libate.dylib (3.0.6) <FA881406-28F3-33BD-B75D-40389CE2ADD1> /usr/lib/libate.dylib
    0x7fff2ae2a000 -     0x7fff2ae31fff  libIOReport.dylib (64.100.1) <4D638FAC-2FD8-359C-8159-1ED37CBB5704> /usr/lib/libIOReport.dylib
    0x7fff2ae32000 -     0x7fff2ae45fff  com.apple.CrashReporterSupport (10.13 - 15053.1) <B879B52A-5A65-3CB3-B271-15A032853A35> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff2af33000 -     0x7fff2af3afff  libMatch.1.dylib (38) <85F66EF8-FC5E-385C-AF8F-79532C2AC988> /usr/lib/libMatch.1.dylib
    0x7fff2af3b000 -     0x7fff2afc6fff  libCoreStorage.dylib (554.140.2) <249F3E03-6C96-3E20-999A-BBFE36AADECA> /usr/lib/libCoreStorage.dylib
    0x7fff2afc7000 -     0x7fff2b01afff  com.apple.AppleVAFramework (6.1.3 - 6.1.3) <2CDA1194-F435-3B9C-94A2-220E26E40DE6> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff2b01b000 -     0x7fff2b034fff  libexpat.1.dylib (26.141.1) <84DC54E5-9E75-3F64-9D7F-3CA641674ED8> /usr/lib/libexpat.1.dylib
    0x7fff2b035000 -     0x7fff2b03efff  libheimdal-asn1.dylib (597.140.2) <8D7B3A0D-A699-3947-9E8C-EEA4B4AD6408> /usr/lib/libheimdal-asn1.dylib
    0x7fff2b03f000 -     0x7fff2b053fff  com.apple.IconFoundation (479.4 - 479.4) <6ED33568-2A1D-3918-9D32-D1E102002E48> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation
    0x7fff2b054000 -     0x7fff2b0c0fff  com.apple.IconServices (479.4 - 479.4) <D94D5AF3-6EF6-30D8-A7F8-58A1A3E5641B> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff2b0c1000 -     0x7fff2b15ffff  com.apple.MediaExperience (1.0 - 1) <245932F7-E76A-37A7-A033-7BB62F8ED190> /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience
    0x7fff2b160000 -     0x7fff2b188fff  com.apple.persistentconnection (1.0 - 1.0) <90FBA2DD-E91A-3A9F-80C5-8F94950136A4> /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection
    0x7fff2b189000 -     0x7fff2b197fff  com.apple.GraphVisualizer (1.0 - 100.1) <9538C368-5703-367B-ADAE-20EC5C3C5C41> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff2b198000 -     0x7fff2b5b3fff  com.apple.vision.FaceCore (4.3.2 - 4.3.2) <86110F21-96FE-325C-8D55-9385690C2386> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff2b5b4000 -     0x7fff2b5fbfff  com.apple.OTSVG (1.0 - 677.6.0.2) <34AD6D57-71B8-3859-94AF-DB856D8FD6BA> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff2b5fc000 -     0x7fff2b602fff  com.apple.xpc.AppServerSupport (1.0 - 2038.120.1) <AD03039F-3D12-31FE-A497-EC4A87097683> /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport
    0x7fff2b603000 -     0x7fff2b615fff  libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <B4F0CDA6-0332-3AB9-A0FB-8CD6EE316D30> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
    0x7fff2b616000 -     0x7fff2b618fff  libspindump.dylib (295.2) <8DE7E414-DCEC-30B8-87DC-511D362D49F3> /usr/lib/libspindump.dylib
    0x7fff2b619000 -     0x7fff2b6d9fff  com.apple.Heimdal (4.0 - 2.0) <30D71BC9-C18F-35C7-B7E1-88E645D4D329> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff2b6da000 -     0x7fff2b6f4fff  com.apple.login (3.0 - 3.0) <0690C64C-DE8C-3AA2-A4A5-BE3EFC3BDC62> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff2b879000 -     0x7fff2b8b5fff  com.apple.bom (14.0 - 235) <E428566D-DFA2-33AC-AF3B-C68530D52522> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff2b8b6000 -     0x7fff2b8fffff  com.apple.AppleJPEG (1.0 - 1) <15DCB33B-EB52-38A2-B02F-EC235DC85B52> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff2b900000 -     0x7fff2b9dffff  libJP2.dylib (2130.7.3) <20747AB5-CFA0-3C7A-BE41-BF4B54FD2038> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff2b9e0000 -     0x7fff2b9e3fff  com.apple.WatchdogClient.framework (1.0 - 98.120.2) <0A097C25-405B-38CD-B6E2-57F51AD77AF0> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient
    0x7fff2b9e4000 -     0x7fff2ba1afff  com.apple.MultitouchSupport.framework (4440.3 - 4440.3) <0DF955E2-E57C-3C1B-96BD-5B81DAD43BC7> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff2ba1b000 -     0x7fff2bb79fff  com.apple.VideoToolbox (1.0 - 2780.10) <4FF9A4C0-FFB4-3F68-9A84-949B4DB0DB7A> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff2bb7a000 -     0x7fff2bbadfff  libAudioToolboxUtility.dylib (1181.72) <9D9EA545-924D-342A-BF27-C19887850F05> /usr/lib/libAudioToolboxUtility.dylib
    0x7fff2bbae000 -     0x7fff2bbcefff  libPng.dylib (2130.7.3) <29756FE6-34E9-3760-9B70-9FF6648BE7CC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff2bbcf000 -     0x7fff2bc2efff  libTIFF.dylib (2130.7.3) <692B9470-8F28-3C98-9C6A-DAE79FE0136F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff2bc2f000 -     0x7fff2bc4bfff  com.apple.IOPresentment (58 - 37) <A86E6181-E216-3691-A7FF-0264A927C8CC> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff2bc4c000 -     0x7fff2bc53fff  com.apple.GPUWrangler (6.3.5 - 6.3.5) <CC101DAE-349B-3C72-9554-6F569364841E> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff2bc54000 -     0x7fff2bc57fff  libRadiance.dylib (2130.7.3) <1A759A2B-28E8-32C4-940D-BE0239558098> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff2bc58000 -     0x7fff2bc5dfff  com.apple.DSExternalDisplay (3.1 - 380) <3FD5886F-5EDD-313D-9783-FF899E5F2650> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff2bc5e000 -     0x7fff2bc82fff  libJPEG.dylib (2130.7.3) <C0903C97-523A-3822-ABE4-D1047D6785DC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff2bc83000 -     0x7fff2bcb2fff  com.apple.ATSUI (1.0 - 1) <F9BEFF92-E409-35B6-89CB-0F221D804D3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI
    0x7fff2bcb3000 -     0x7fff2bcb7fff  libGIF.dylib (2130.7.3) <E92A145C-2B76-39D1-B481-B7C95ACBF989> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff2bcb8000 -     0x7fff2bcc1fff  com.apple.CMCaptureCore (1.0 - 82.6) <E0EAD649-4C7A-384E-999B-4D82AA9CDA52> /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore
    0x7fff2bcc2000 -     0x7fff2bd09fff  com.apple.print.framework.PrintCore (16.1 - 531.1) <035969B9-3323-3AF4-AC4C-1D5B941C7C62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff2bd0a000 -     0x7fff2bdd7fff  com.apple.TextureIO (3.10.9 - 3.10.9) <4B778275-5F2D-36DA-A6AD-14C8E516E197> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff2bdd8000 -     0x7fff2bde0fff  com.apple.InternationalSupport (1.0 - 61.1) <56A6D4F8-FF5B-3F34-BD1A-249414F182E9> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff2bde1000 -     0x7fff2be5bfff  com.apple.datadetectorscore (8.0 - 674) <CDA8DABD-62A3-3E1C-9A76-B00E1E950254> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff2be5c000 -     0x7fff2beb9fff  com.apple.UserActivity (439 - 439) <C272F369-1086-317C-A4CF-AE2E1EC4FFB4> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity
    0x7fff2beba000 -     0x7fff2c656fff  com.apple.MediaToolbox (1.0 - 2780.10) <AFB06F1B-22BA-3DB7-B6E4-3C55F0A4BECF> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff2ca97000 -     0x7fff2cafdfff  com.apple.imfoundation (10.0 - 1000) <1D902049-CAD5-3DE0-AE4A-9AACEBB586BE> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x7fff2cafe000 -     0x7fff2cb26fff  com.apple.locationsupport (2420.19.23 - 2420.19.23) <9A015D62-2143-3199-AD14-ECA953A728D3> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport
    0x7fff2cb27000 -     0x7fff2cb58fff  libSessionUtility.dylib (76.69) <400DF595-A30C-3AD3-A8BA-25260299ACE6> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib
    0x7fff2cb59000 -     0x7fff2cc8dfff  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <93226BB9-165F-3A42-8EE3-9670394C4DC9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff2cc8e000 -     0x7fff2ccf3fff  com.apple.audio.AudioSession (1.0 - 76.69) <ADC1C8FC-A444-3F15-A396-B4AB688BB326> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession
    0x7fff2ccf4000 -     0x7fff2cd06fff  libAudioStatistics.dylib (27.64) <74E8B615-03FE-327B-A8FB-EAC5EF117414> /usr/lib/libAudioStatistics.dylib
    0x7fff2cd07000 -     0x7fff2cd16fff  com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <CE36276F-23DD-32A3-9863-D3A5DDE5965E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff2cd17000 -     0x7fff2cd83fff  com.apple.ApplicationServices.ATS (377 - 516) <6E601872-2340-3675-9B6F-0C1DB991C54E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff2cd84000 -     0x7fff2cd9cfff  libresolv.9.dylib (68) <86A4BABF-3EFC-3113-BE8A-2D1AAAEF0194> /usr/lib/libresolv.9.dylib
    0x7fff2ce1d000 -     0x7fff2ce50fff  com.apple.securityinterface (10.0 - 55149.120.1) <10A7DFC1-8C46-382C-AEF0-89B151767F50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff2cecf000 -     0x7fff2cfaefff  libSMC.dylib (20) <CF88A94C-B5EE-306F-96A3-1442BA061C46> /usr/lib/libSMC.dylib
    0x7fff2cfaf000 -     0x7fff2d00efff  libcups.2.dylib (494.3) <2CE9752F-8763-3456-83CF-E4BCFB731153> /usr/lib/libcups.2.dylib
    0x7fff2d00f000 -     0x7fff2d01efff  com.apple.LangAnalysis (1.7.0 - 254) <AB67008E-5986-3974-B986-FDBFAC018CAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff2d01f000 -     0x7fff2d029fff  com.apple.NetAuth (6.2 - 6.2) <B5806BA7-9A6E-37A0-9AB9-6EC2D61844AC> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff2d02a000 -     0x7fff2d031fff  com.apple.ColorSyncLegacy (4.13.0 - 1) <86D9E9C9-C631-371E-824E-A203FE9E560A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff2d032000 -     0x7fff2d03dfff  com.apple.QD (4.0 - 416) <1D8792FC-4A76-3B4F-82CF-3889C05768FE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff2d03e000 -     0x7fff2d692fff  com.apple.audio.AudioResourceArbitration (1.0 - 1) <C97CD66B-8267-3C39-B025-789864237928> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration
    0x7fff2d693000 -     0x7fff2d69efff  com.apple.perfdata (1.0 - 67.40.1) <10E2B0C5-83A4-368A-B972-7AFA40D5338C> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata
    0x7fff2d69f000 -     0x7fff2d6adfff  libperfcheck.dylib (41) <A2D0E1A8-A98F-3DAA-B9FC-C033FC4CD9E0> /usr/lib/libperfcheck.dylib
    0x7fff2d6ae000 -     0x7fff2d6bdfff  com.apple.Kerberos (3.0 - 1) <0074E20F-E7D8-31F5-AF41-0D7BF370CD50> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff2d6be000 -     0x7fff2d70efff  com.apple.GSS (4.0 - 2.0) <D546E52C-295F-3CCD-9925-03632FE72ECB> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff2d70f000 -     0x7fff2d71ffff  com.apple.CommonAuth (4.0 - 2.0) <DF20551B-1514-39B3-A52E-681A2E5F0D1C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff2d720000 -     0x7fff2d747fff  com.apple.MobileAssets (1.0 - 659.100.21) <14EB0135-6B08-37A0-A517-E23997BAD7D5> /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset
    0x7fff2d775000 -     0x7fff2d794fff  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <C48DA26A-6A69-3497-B94D-43332354162B> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff2d795000 -     0x7fff2d79dfff  com.apple.CorePhoneNumbers (1.0 - 1) <9F49D632-C5F4-37F5-A2A8-2830A7560138> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff2d79e000 -     0x7fff2d827fff  libTelephonyUtilDynamic.dylib (5359.1) <DDF9B2A1-D071-3180-9BC6-A143D6D9E713> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff2d8f0000 -     0x7fff2d8f0fff  liblaunch.dylib (2038.120.1) <4A353070-A560-3A98-8869-28C92435C6B2> /usr/lib/system/liblaunch.dylib
    0x7fff2dbe9000 -     0x7fff2de74fff  com.apple.NetworkExtension (1.0 - 1) <727B66BE-EED5-324A-8FDC-14E91844B92E> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension
    0x7fff2de75000 -     0x7fff2df76fff  com.apple.ids (10.0 - 1000) <F30AC7B8-FACA-3B37-914D-C7AFA47A9DAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x7fff2df77000 -     0x7fff2e0d1fff  com.apple.idsfoundation (10.0 - 1000) <3EAAA079-B3EE-3A12-B181-3267029FB4B0> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation
    0x7fff2e0d2000 -     0x7fff2e21dfff  com.apple.Sharing (1630 - 1630) <CE657A48-7BDD-34D7-9CBC-B1D6AD94B2B2> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff2e21e000 -     0x7fff2e33ffff  com.apple.Bluetooth (8.0.5 - 8.0.5d7) <D011494A-287B-3487-B817-2329843C2486> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff2e359000 -     0x7fff2e3b2fff  com.apple.ProtectedCloudStorage (1.0 - 1) <EA0958A6-8296-3E23-81BE-297473A6E17E> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff2e612000 -     0x7fff2fb0dfff  com.apple.GeoServices (1.0 - 1757.26.6.2.2) <1A271F08-3D05-36BF-A136-7D48B4418CD6> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff2fb1a000 -     0x7fff2fb41fff  com.apple.RemoteViewServices (2.0 - 163) <7DBF2A51-CE8E-352E-9426-B83DC370ADDD> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff2fb42000 -     0x7fff2fb51fff  com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <076E6A5F-4FEE-378B-9DCD-AFFA1348C64F> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff2fb52000 -     0x7fff2fb59fff  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <DB80BAB9-5E83-32DB-A424-05BB19044665> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff2fd87000 -     0x7fff2fd87fff  libsystem_product_info_filter.dylib (8.40.1) <78928329-DD98-3799-989D-870DF92FE8D5> /usr/lib/system/libsystem_product_info_filter.dylib
    0x7fff2fdff000 -     0x7fff2fe16fff  libnetworkextension.dylib (1295.140.3) <70743C15-3A7D-308C-9238-7E20FBF73199> /usr/lib/libnetworkextension.dylib
    0x7fff2fe5f000 -     0x7fff2fe5ffff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <CDB56324-715E-3223-903F-EEC1D4E57F14> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff2fe85000 -     0x7fff2fe85fff  com.apple.CoreServices (1122.44 - 1122.44) <104E1757-7D8A-32D3-9B38-B23B1A8EAB17> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff30041000 -     0x7fff30041fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <28463942-495F-3231-9348-32ABC601A1F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff30082000 -     0x7fff3008dfff  com.apple.MediaAccessibility (1.0 - 130) <677557AF-6AC1-3860-B7C4-772B8DA9957B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff3008e000 -     0x7fff300adfff  com.apple.networking.AlgosScoreFramework (1.0 - 1) <BFF296BB-6E78-3213-B453-31AA58FC13E0> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework
    0x7fff300ae000 -     0x7fff300b2fff  com.apple.AppleSRP (5.0 - 1) <A8B167C6-9E49-3ED9-AD87-36BEA98F6E20> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff300b3000 -     0x7fff300befff  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <6873367E-2879-3C96-A766-AD6DFD69F36A> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff30883000 -     0x7fff308e8fff  com.apple.CoreBluetooth (1.0 - 1) <32288DE3-BD59-35A6-9165-73176E074499> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff308e9000 -     0x7fff308f2fff  com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) <9A1589E7-0B3A-3DC5-967C-7A3D4C14ED1E> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff30906000 -     0x7fff30912fff  com.apple.AppleIDAuthSupport (1.0 - 1) <C391F5AD-7903-31AF-8608-7826C0EFB3C5> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff30913000 -     0x7fff309bbfff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <08A9AAA6-7057-3105-BDE1-DC7270C38774> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff309bc000 -     0x7fff309effff  com.apple.MediaKit (16 - 927.40.2) <86B948D3-5757-37A7-B2DA-F7C50778B108> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff309f0000 -     0x7fff30adbfff  com.apple.DiskManagement (14.0 - 1733.140.2) <CF6680B9-9799-3DE8-A600-094260672A4F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff30adc000 -     0x7fff30e96fff  com.apple.CoreAUC (326.2.0 - 326.2.0) <58430C09-401A-3B4C-806E-E87C46816939> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff30e97000 -     0x7fff30e9afff  com.apple.Mangrove (1.0 - 25) <0E9FF438-D4B3-3DF1-B8A7-64623282B9B3> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff30e9b000 -     0x7fff30ec8fff  com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <80DEBCCB-A598-3CE5-B988-FFC5B81389CF> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff30ec9000 -     0x7fff31018fff  com.apple.FileProvider (349.4.3 - 349.4.3) <E07C8909-299C-3696-BD84-5CF42EE64EE4> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff31019000 -     0x7fff3103bfff  com.apple.GenerationalStorage (2.0 - 323) <9E36AF92-10E2-382B-A07C-4E3270448690> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff31885000 -     0x7fff318c4fff  com.apple.AppleVPAFramework (3.26.1 - 3.26.1) <B7DF9782-C63B-32F0-A008-E83503C76E78> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff31977000 -     0x7fff319b2fff  com.apple.DebugSymbols (195.1 - 195.1) <7D2E32A0-DB93-36EE-AE9C-7974708CF4FC> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff319b3000 -     0x7fff31a68fff  com.apple.CoreSymbolication (12.5 - 64544.81.1) <7215543C-E3B6-30A0-8B21-7FBDFB10F198> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff31a69000 -     0x7fff31a72fff  com.apple.CoreTime (284.0.4) <DAEEF1D8-1C34-37AC-9691-C4540C92E9F9> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime
    0x7fff32977000 -     0x7fff329dafff  com.apple.framework.Apple80211 (17.0 - 1728) <D89EA57A-D351-3BD1-A470-505C6D8BF4D6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff329db000 -     0x7fff32b2cfff  com.apple.CoreWiFi (3.0 - 341) <0FE4018E-E199-3923-A56D-430E40F5EEB7> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff32d66000 -     0x7fff32d9cfff  com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <FE03407F-3251-30BD-AA64-8DE2940C0F57> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    0x7fff32d9d000 -     0x7fff32dacfff  com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <8F0CFA90-78B8-3305-BCD3-6C28B7838CE0> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff32e0a000 -     0x7fff32e0dfff  com.apple.help (1.3.8 - 71) <CF14979A-CA27-32D1-A3E8-D99AD6C91464> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff32e0e000 -     0x7fff32e15fff  com.apple.EFILogin (2.0 - 2) <77A5D3D5-3B8D-3B5D-A1BD-A7614C86AF67> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff32e16000 -     0x7fff32e21fff  libcsfde.dylib (554.140.2) <8B6A31B3-9421-3BAE-882B-8BEF5217E251> /usr/lib/libcsfde.dylib
    0x7fff33060000 -     0x7fff33060fff  com.apple.ApplicationServices (48 - 50) <52BB5EB6-2C1B-34F9-8665-F50DD078E71B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff33262000 -     0x7fff332b9fff  com.apple.CorePrediction (1.0 - 1) <0858EE22-68F8-31C9-88A2-B94D225CEE9E> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
    0x7fff33375000 -     0x7fff33375fff  libHeimdalProxy.dylib (79) <A1B83B1E-006D-38A8-8878-FD6ECBBB9B1B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib
    0x7fff33428000 -     0x7fff33428fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <0A5BB3A7-D9DC-346C-9FBB-FB075194E7AC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff3344c000 -     0x7fff3348ffff  com.apple.StreamingZip (1.0 - 1) <DDE31BAA-F317-3EA3-AF44-7B05CDB95217> /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip
    0x7fff334d0000 -     0x7fff334d5fff  com.apple.PushKit (1.0 - 1) <02EC6449-963F-376C-BE24-F9CC8083ABD3> /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit
    0x7fff334d6000 -     0x7fff33509fff  com.apple.C2 (1.3 - 573) <1D8BCCDC-EFB0-3DF8-93A4-4D18388D7C11> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2
    0x7fff343f8000 -     0x7fff34448fff  com.apple.ChunkingLibrary (334.1 - 334.1) <2CD91198-1354-357F-8858-D58244526C15> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff34afb000 -     0x7fff34ca1fff  com.apple.WebKitLegacy (16611 - 16611.3.10.1.6) <D06037B8-003A-36DA-992F-62B478338C33> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff34ca2000 -     0x7fff34ca4fff  com.apple.ConstantClasses (1.0 - 1) <7821839C-0DE2-32F2-B19E-76C5A8541CE7> /System/Library/PrivateFrameworks/ConstantClasses.framework/Versions/A/ConstantClasses
    0x7fff35f86000 -     0x7fff3621afff  libAWDSupportFramework.dylib (4205) <879C09AE-5344-3B02-A93F-8B3C46B39F17> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
    0x7fff3628e000 -     0x7fff362befff  libtidy.A.dylib (18.2) <1AF8A622-91F8-3193-BA3D-CB1A799565A8> /usr/lib/libtidy.A.dylib
    0x7fff362e0000 -     0x7fff362f3fff  com.apple.Engram (1.0 - 1) <AED2FFE9-3841-33B1-B552-A75B17A20A3A> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram
    0x7fff362f4000 -     0x7fff36317fff  com.apple.openscripting (1.7 - 190) <A2516A00-ECC2-31F2-9157-90AF9A4C6F56> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff36318000 -     0x7fff3631bfff  com.apple.securityhi (9.0 - 55008) <DDAD2F6D-2105-370E-9C96-63ABF95ABF00> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff3631c000 -     0x7fff3631ffff  com.apple.ink.framework (10.15 - 227) <6177BDED-F304-3EAD-B72E-23A050856753> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff36320000 -     0x7fff36323fff  com.apple.CommonPanels (1.2.6 - 101) <E6BB8219-34DB-3A11-A3C2-B17AD8E42414> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff36324000 -     0x7fff3632bfff  com.apple.ImageCapture (1711.5.2 - 1711.5.2) <E3871995-745C-35A8-8B48-647DAAF046E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff3632c000 -     0x7fff3751cfff  com.apple.JavaScriptCore (16611 - 16611.3.10.1.6) <E1A54760-8F75-3A78-89F7-232D9EC162E8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff38a99000 -     0x7fff38a99fff  com.apple.marco (10.0 - 1000) <6E3E4EC3-3DD4-332D-8D0F-DC0F946269CB> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x7fff3914d000 -     0x7fff39154fff  com.apple.URLFormatting (146 - 146.22) <05567C81-E57E-3201-8DB5-9DC03762E7E7> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff39155000 -     0x7fff39163fff  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <FF5E6B22-0BE8-36A1-90CB-44087715CCCB> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
    0x7fff39164000 -     0x7fff3917bfff  libAccessibility.dylib (2885.49) <0F94A4D4-E4D0-3968-95AF-9A123C5A699E> /usr/lib/libAccessibility.dylib
    0x7fff3917c000 -     0x7fff3b8c6fff  com.apple.WebCore (16611 - 16611.3.10.1.6) <20CBDB85-8A66-3999-9C7C-45403F05958D> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff3ba0e000 -     0x7fff3bbb5fff  libFosl_dynamic.dylib (200) <D9E1A6E2-1ED3-3EDF-9600-08D04121AD8C> /usr/lib/libFosl_dynamic.dylib
    0x7fff3bea4000 -     0x7fff3bef2fff  com.apple.Safari.SafeBrowsing (16611 - 16611.3.10.1.6) <5513EB53-B539-3D8D-801D-E64175D3A03C> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff3bef3000 -     0x7fff3c6d2fff  com.apple.WebKit (16611 - 16611.3.10.1.6) <C2B252E6-5870-3B58-B918-03F8307F0729> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff3c885000 -     0x7fff3c888fff  com.apple.print.framework.Print (15 - 271) <29E7EB03-0307-35D9-B56F-B9DCB5C5A4E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3c889000 -     0x7fff3c88cfff  com.apple.Carbon (160 - 164) <B86E3835-F4BE-3DCA-88C7-CEA01227DF58> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3cb3f000 -     0x7fff3cb5efff  com.apple.private.SystemPolicy (1.0 - 1) <8BC55621-1E45-33B3-BCD6-C59F1F390695> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff3ccab000 -     0x7fff3cd01fff  com.apple.AccessibilitySharedSupport (1.0 - 1) <6B0C8DD8-3606-3F13-AD29-D1EC83B8459C> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/AccessibilitySharedSupport
    0x7fff3d136000 -     0x7fff3d13afff  com.apple.CoreOptimization (1.0 - 1) <65BA73C7-2DEA-3AA9-B59D-750B505B54EA> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
    0x7fff3d47c000 -     0x7fff3d487fff  com.apple.MallocStackLogging (1.0 - 1) <DF41452E-DA3E-3F74-9354-6F82BE363DB8> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging
    0x7fff3d49c000 -     0x7fff3d4aefff  libmis.dylib (274.140.2) <570E2D9A-BC76-37F7-8CFC-E18AD5E81CE0> /usr/lib/libmis.dylib
    0x7fff3d4af000 -     0x7fff3d4b2fff  com.apple.gpusw.GPURawCounter (20.3 - 12.0) <9463CB15-1CD3-37D3-9C2E-1C96A895F8A5> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter
    0x7fff3d9cb000 -     0x7fff3d9cefff  com.apple.WebInspectorUI (16611 - 16611.3.10.1.6) <D8D7C00F-BE02-3C77-9603-0ECB13AB881D> /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspectorUI
    0x7fff3fb23000 -     0x7fff3fba0fff  com.apple.TextInput (1.0 - 1.0) <282E6B77-4CDF-39A6-8ED3-288E35F7881A> /System/Library/PrivateFrameworks/TextInput.framework/Versions/A/TextInput
    0x7fff408e4000 -     0x7fff408effff  com.apple.CaptiveNetworkSupport (13.0 - 1) <B7F41903-09D2-3BED-A223-7D28603816E9> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNetwork
    0x7fff40ca7000 -     0x7fff40cd6fff  libncurses.5.4.dylib (57) <C2E7A8C6-E9D4-3689-9EF3-0DB4D8AF7E5A> /usr/lib/libncurses.5.4.dylib
    0x7fff40cd7000 -     0x7fff40ce0fff  com.apple.IOAccelMemoryInfo (1.0 - 1) <DFFBB3EE-333E-3A1E-B795-4A3A6DBA0F3A> /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo
    0x7fff41163000 -     0x7fff41181fff  libCGInterfaces.dylib (544.4) <05A5B7E9-C79A-3FEA-AD6C-72FE168004C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff43710000 -     0x7fff43983fff  com.apple.RawCamera.bundle (9.10.0 - 1450.3) <2F4C79D7-0A8A-3FE3-9A93-74F78774D0BC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff4788c000 -     0x7fff478ccfff  com.apple.osanalytics.OSAnalytics (1.0 - 1) <19C9EC00-4A56-303C-9C22-47AF6222F1AF> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics
    0x7fff5154b000 -     0x7fff515eafff  com.apple.Symbolication (12.5 - 64544.70.1) <262C27E9-D575-3209-8403-C314C534D1B0> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff5ce21000 -     0x7fff5ce30fff  libSimplifiedChineseConverter.dylib (90) <5450CCF1-B48D-3EB3-8A25-8F768A2B40B1> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x7fff5dbda000 -     0x7fff5e069fff  com.apple.driver.AppleIntelKBLGraphicsMTLDriver (16.5.2 - 16.0.5) <DD84C8FF-1113-396A-A1DA-F95347B51B19> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver
    0x7fff6959b000 -     0x7fff6959ffff  libmetal_timestamp.dylib (31001.192.1) <408D3E8F-D662-38FF-A0AB-79615D1BBD0D> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib
    0x7fff6b9e6000 -     0x7fff6b9ecfff  libCoreFSCache.dylib (200.11) <3C96E791-3964-32EA-A84A-00DF3455B43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff6b9ed000 -     0x7fff6b9f1fff  libCoreVMClient.dylib (200.11) <966F49F6-D2D5-3ACB-9CFD-9F8D3C8C82F9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff6b9f2000 -     0x7fff6ba01fff  com.apple.opengl (18.5.9 - 18.5.9) <5C26B170-E22B-3AAD-BA33-61304FFA70B2> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff6ba02000 -     0x7fff6ba04fff  libCVMSPluginSupport.dylib (18.5.9) <435F258D-95B5-3015-BDAC-4B8EF8E89F1E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff6ba05000 -     0x7fff6ba0dfff  libGFXShared.dylib (18.5.9) <851E0956-A16E-3F5D-B3BE-37B56C2BAA04> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff6ba0e000 -     0x7fff6ba41fff  libGLImage.dylib (18.5.9) <687EBB15-1AB3-3815-A69D-58527655A92D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff6ba42000 -     0x7fff6ba7efff  libGLU.dylib (18.5.9) <29B7802C-F6E4-3DF1-B5D6-07B29C6D02B2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff6bc13000 -     0x7fff6bc1dfff  libGL.dylib (18.5.9) <8A4ED04C-9171-3CE2-A52A-E7C4D76A6EDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff6d05d000 -     0x7fff6d0b5fff  com.apple.opencl (4.6 - 4.6) <713206B3-A335-3AC5-B342-4CE16BDF69F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff6dbdf000 -     0x7fff6ddfafff  com.apple.AMDMTLBronzeDriver (4.6.20 - 4.0.6) <B213D062-98DC-30CE-B960-02373F8C3277> /System/Library/Extensions/AMDMTLBronzeDriver.bundle/Contents/MacOS/AMDMTLBronzeDriver
    0x7fff6f3e2000 -     0x7fff6f3ecfff  com.apple.AccessibilityBundles (1.0 - 174) <1C1919E2-6737-39FF-A494-944BAAC36F19> /System/Library/PrivateFrameworks/AccessibilityBundles.framework/Versions/A/AccessibilityBundles
    0x7fff77891000 -     0x7fff77898fff  libRosetta.dylib (203.58) <F72C2D50-7279-3497-8A59-56908F9661F3> /usr/lib/libRosetta.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 10
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=915.9M resident=0K(0%) swapped_out_or_unallocated=915.9M(100%)
Writable regions: Total=2.6G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=2.6G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               384K        3 
Activity Tracing                   256K        1 
CG backing stores                 4320K        6 
CG image                           124K        5 
CoreAnimation                      156K       14 
CoreGraphics                        12K        2 
CoreImage                           12K        2 
CoreServices                       224K        1 
CoreUI image data                  816K        6 
Foundation                          16K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           349.3M       69 
MALLOC guard page                   48K        8 
MALLOC_MEDIUM (reserved)         840.0M        7         reserved VM address space (unallocated)
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
STACK GUARD                       54.5M        9 
Stack                             13.6M       10 
VM_ALLOCATE                         84K       19 
__DATA                             1.0G      677 
__DATA_CONST                      24.7M      390 
__DATA_DIRTY                       887K      128 
__FONT_DATA                          4K        1 
__LINKEDIT                       530.6M      514 
__OBJC_RO                         70.3M        1 
__OBJC_RW                         2496K        2 
__TEXT                           387.5M      625 
__UNICODE                          588K        1 
mapped file                      269.7M       35 
shared memory                      764K       17 
===========                     =======  ======= 
TOTAL                              3.9G     2556 
TOTAL, minus reserved VM space     2.7G     2556 

Model: MacBookPro15,1, BootROM 1554.140.20.0.0 (iBridge: 18.16.14759.0.1,0), 6 processors, 6-Core Intel Core i9, 2.9 GHz, 32 GB, SMC 
Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin
Graphics: kHW_AMDRadeonPro560XItem, Radeon Pro 560X, spdisplays_pcie_device, 4 GB
Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, DDR4, 2400 MHz, Micron, 16ATS2G64HZ-2G6B1
Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, DDR4, 2400 MHz, Micron, 16ATS2G64HZ-2G6B1
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Aug 10 2021 19:55:28 version 9.30.444.18.32.5.71 FWID 01-93db3422
Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
USB Device: USB 3.1 Bus
USB Device: Apple T2 Bus
USB Device: Touch Bar Backlight
USB Device: Touch Bar Display
USB Device: Apple Internal Keyboard / Trackpad
USB Device: Headset
USB Device: Ambient Light Sensor
USB Device: FaceTime HD Camera (Built-in)
USB Device: Apple T2 Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.5
Thunderbolt Bus: MacBook Pro, Apple Inc., 47.5

emacs-head@28 does not build on Catalina

Last 15 lines from /Users/jmckitrick/Library/Logs/Homebrew/emacs-head@28/03.make:
CC nsselect.o
CC nsimage.o
CC macfont.o
CC nsxwidget.o
CC terminfo.o
CC lastfile.o
CCLD temacs
Undefined symbols for architecture x86_64:
"_release_select_lock", referenced from:
_really_call_select in thread.o
ld: symbol(s) not found for architecture x86_64

Easy way to swap icons

I like to rotate my emacs app icon. Right now, I have to re-install the formula from scratch. Is there an easier way to re-install and just change the icon?

emacs: can't find function "F626f6f6c65616e70_booleanp_0" in compilation unit

I had https://github.com/d12frosted/homebrew-emacs-plus installed. I reinstalled it to get latest emacs changes but ran into an issue when launching emacs.

I then found out about this project and gave it a try since I saw a similar issue from last year:

#23

However, no luck, exactly same issue as with homebrew-emacs-plus (see below).

This is how I installed it:

brew install --verbose emacs-head@28 --with-pdumper --with-native-comp

This is what I get when I run emacs:

❯ emacs -Q
emacs: can't find function "F626f6f6c65616e70_booleanp_0" in compilation unit /usr/local/Cellar/emacs-head@28/28.0.50_1/libexec/emacs/28.0.50/x86_64-apple-darwin20.3.0/../../../../bin/../lib/emacs/28.0.50/native-lisp/28.0.50-58d3e3ce/preloaded/subr-13adf6a6-13749f45.eln

❯ objdump --syms /usr/local/Cellar/emacs-head@28/28.0.50_1/libexec/emacs/28.0.50/x86_64-apple-darwin20.3.0/../../../../bin/../lib/emacs/28.0.50/native-lisp/28.0.50-58d3e3ce/preloaded/subr-13adf6a6-13749f45.eln | grep booleanp
00000000000126d0 g     F __TEXT,__text _F626f6f6c65616e70_booleanp_0

Any ideas?

Build issue

Building emacs-head@28 this morning gives this error:

Last 15 lines from /Users/jmckitrick/Library/Logs/Homebrew/emacs-head@28/03.make:
  GEN      ../../etc/charsets/CP949-2BYTE.map
  GEN      ../../etc/charsets/BIG5-1.map
  GEN      ../../etc/charsets/BIG5-2.map
  GEN      ../../etc/charsets/MULE-ethiopic.map
  GEN      ../../etc/charsets/MULE-ipa.map
  GEN      ../../etc/charsets/MULE-is13194.map
  GEN      ../../etc/charsets/MULE-sisheng.map
  GEN      ../../etc/charsets/MULE-tibetan.map
  GEN      ../../etc/charsets/MULE-lviscii.map
  GEN      ../../etc/charsets/MULE-uviscii.map
  GEN      ../../etc/charsets/GB180304.map
  GEN      ../../etc/charsets/JISX2131.map
  GEN      charsets.stamp
make: *** [src] Error 2
make: *** Waiting for unfinished jobs....

Updated ImageMagick and now Emacs doesn't rebuild

Something odd happened where I kept getting segfaults every time I opened emacs even when using emacs -Q. I decided to brew uninstall emacs-head and then

brew install emacs-head --HEAD --with-cocoa --with-dbus --with-imagemagick --with-jansson --with-mailutils --with-modern-icon-black-variant --with-no-frame-refocus --with-pdumper --with-xwidgets

Then I kept getting these errors when installing:

==> Installing emacs-head from daviderestivo/emacs-head
==> Cloning https://github.com/emacs-mirror/emacs.git
Updating /Users/djm/Library/Caches/Homebrew/emacs-head--git
From https://github.com/emacs-mirror/emacs
   ee91405..5617c82  master     -> origin/master
==> Checking out branch master
Already on 'master'
Your branch is behind 'origin/master' by 2 commits, and can be fast-forwarded.
  (use "git pull" to update your local branch)
HEAD is now at 5617c82 Prepare module header generation for Emacs 28.
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patches/0
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patches/0
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patches/0
######################################################################## 100.0%
==> Patching
==> Applying 0001-No-frame-refocus-cocoa.patch
patching file src/frame.c
Hunk #1 succeeded at 2056 (offset 56 lines).
==> Applying 0003-Pdumper-size-increase.patch
patching file src/pdumper.c
Hunk #1 succeeded at 146 with fuzz 1 (offset 10 lines).
==> Applying 0005-Xwidgets-webkit-in-cocoa-pdumper.patch
patching file configure.ac
Hunk #1 succeeded at 484 (offset -2 lines).
Hunk #2 succeeded at 2792 (offset -24 lines).
Hunk #3 succeeded at 5713 (offset 86 lines).
patching file lisp/xwidget.el
patching file nextstep/templates/Info.plist.in
Hunk #1 succeeded at 677 with fuzz 1.
patching file src/Makefile.in
Hunk #1 succeeded at 434 (offset 10 lines).
patching file src/emacs.c
Hunk #1 succeeded at 1870 (offset 146 lines).
Hunk #2 succeeded at 1946 (offset 146 lines).
patching file src/nsterm.m
Hunk #2 succeeded at 2439 (offset 27 lines).
Hunk #3 succeeded at 2448 (offset 27 lines).
Hunk #4 succeeded at 4257 (offset 67 lines).
Hunk #5 succeeded at 6927 (offset 78 lines).
Hunk #6 succeeded at 6970 (offset 78 lines).
patching file src/nsxwidget.h
patching file src/nsxwidget.m
patching file src/xwidget.c
patching file src/xwidget.h
Hunk #2 succeeded at 60 (offset -1 lines).
Hunk #3 succeeded at 97 (offset -2 lines).
==> ImageMagick PKG_CONFIG_PATH:
/usr/local/opt/imagemagick/lib/pkgconfig
==> ./autogen.sh
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/
==> make
Last 15 lines from /Users/djm/Library/Logs/Homebrew/emacs-head/03.make:
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/textmodes/paragraphs.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/progmodes/prog-mode.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/emacs-lisp/lisp-mode.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/progmodes/elisp-mode.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/textmodes/text-mode.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/textmodes/fill.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/newcomment.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/replace.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/emacs-lisp/tabulated-list.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/buff-menu.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/fringe.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/emacs-lisp/regexp-opt.el (source)...
Loading /private/tmp/emacs-head-20191223-32528-s0gaot/lisp/image.el (source)...
make[1]: *** [bootstrap-emacs.pdmp] Segmentation fault: 11
make: *** [src] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

I then tried removing the --with-imagemagick flag and it built fine.

Blank buffer after fresh build from head

Built with brew install emacs-head --HEAD --with-cocoa --with-imagemagick --with-jansson --with-mailutils --with-xwidgets --with-modern-icon-papirus, and started with /usr/local/opt/emacs-head/Emacs.app/Contents/MacOS/Emacs --no-init-file. Emacs shows a completely blank/white buffer and no cursor either. Clicked from macOS menu "Help > Tutorial" to open the tutorial buffer. Still no visible change.

image

Also tested to build from emacs savannah master branch with no flags or --with-ns flag. Still the same result. Not sure if this is a bug in upstream master, or I should've been building with some flags.

System: macOS Sierra 10.12.6 (16G2136)

Signature of function define-obsolete-function-alias changed?

Today I reinstalled Emacs from your tap, and suddenly I get this error: Error: Wrong number of arguments: (3 . 4), 2

Going in to the details (see [1]) I realized that the signature of the function define-obsolete-function-alias has changed in Emacs 28.0.50 from two required arguments to three (adding when).

Now many packages stop compiling as they have lines like this, with 2 arguments instead of 3:

(define-obsolete-function-alias 'org-journal-open-next-entry 'org-journal-next-entry)

Previous signature of the function

(defun make-obsolete-variable (obsolete-name current-name &optional when access-type)

when is optional

Current signature of the function

(defun make-obsolete-variable (obsolete-name current-name when &optional access-type)

Consequences

This breaks many packages when trying to compile. For instance slime, but many others.


[1] https://www.reddit.com/r/emacs/comments/kqb9s9/cannot_recompile_packagess_error_wrong_number_of/

Emacs compilation fails on macOS 10.14.6 with Xcode11

Since the release of Xcode 11, Emacs (HEAD) fails to compile on macOS (10.14.6). It still correctly compiles with the previous version of Xcode (10.3). The error message is:

/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap
dyld: lazy symbol binding failed: Symbol not found: _aligned_alloc
  Referenced from: /private/tmp/emacs-head-20190921-27889-1s1yk6s/src/./temacs
  Expected in: /usr/lib/libSystem.B.dylib

dyld: Symbol not found: _aligned_alloc
  Referenced from: /private/tmp/emacs-head-20190921-27889-1s1yk6s/src/./temacs
  Expected in: /usr/lib/libSystem.B.dylib

make[1]: *** [bootstrap-emacs.pdmp] Abort trap: 6
make: *** [src] Error 2
make: *** Waiting for unfinished jobs....

I've posted a message in reddit to see if someone else have a solution for this issue.

emacs-head@28: No such file or directory - native-lisp

When building with brew install emacs-head@28 --with-cocoa --with-dbus --with-no-frame-refocus --with-imagemagick --with-pdumper --with-xwidgets --with-native-comp I get:

...
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@28/28.0.50_1/share/info/emacs --prefix=/usr/local
==> make BYTE_COMPILE_EXTRA_FLAGS=--eval '(setq comp-speed 2)'
==> make install
Error: An exception occurred within a child process:
  Errno::ENOENT: No such file or directory - native-lisp

Macos M1: Emacs 28 build error: gnus-agent

Make breaks with the following error:

==> ./autogen.sh
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@28/28.0.50_1/share/info/emacs --prefix
==> make
Last 15 lines from /Users/arsca/Library/Logs/Homebrew/emacs-head@28/03.make:
In toplevel form:
gnus/gnus-agent.el:3511:1: Error: Wrong type argument: listp, file
make[2]: *** [gnus/gnus-agent.elc] Error 1
make[2]: *** Waiting for unfinished jobs....
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
Eager macro-expansion failure: (wrong-type-argument listp file)
make[1]: *** [compile-main] Error 2
make: *** [lisp] Error 2

Failure to build HEAD under MacOS High Sierra

I tried:

brew install emacs-head --HEAD --with-cocoa --with-jansson --with-mailutils --with-imagemagick --with-dbus

But it failed with:

Last 15 lines from /Users/dg/Library/Logs/Homebrew/emacs-head/03.make:
/Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../admin/grammars all EMACS="../../src/emacs"
make[2]: Nothing to be done for `all'.
make[2]: Nothing to be done for `all'.
  GEN      cus-load.el
  GEN      finder-inf.el
desired fingerprint: 95ed025f5def5ae827527e808c6a04208d16f8bead87c354f85e04984b7f9d71
found fingerprint: 2d616bde6293e0b9a14ea278e53e31fb8524b0f24d09657b1c95bc70984214eb
emacs: could not load dump file "/private/tmp/emacs-head-20191114-22166-lr3ri3/src/emacs.pdmp": not built for this Emacs executable
make[1]: *** [cus-load.el] Error 1
make[1]: *** Waiting for unfinished jobs....
desired fingerprint: 95ed025f5def5ae827527e808c6a04208d16f8bead87c354f85e04984b7f9d71
found fingerprint: 2d616bde6293e0b9a14ea278e53e31fb8524b0f24d09657b1c95bc70984215eb
emacs: could not load dump file "/private/tmp/emacs-head-20191114-22166-lr3ri3/src/emacs.pdmp": not built for this Emacs executable
make[1]: *** [finder-inf.el] Error 1
make: *** [lisp] Error 2

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

Cannot upgrade

I cannot update the formulae, when --head is installed.

brew upgrade emacs-head --with-mailutils --with-jansson --with-imagemagick --with-dbus --with-ctags --with-cocoa
Error: daviderestivo/emacs-head/emacs-head HEAD-259dfd2_1 already installed

or with this: --HEAD

Error: invalid option: --HEAD

support patch to enable multicolor fonts on macOS

Emacs upstream disable multicolor font support as there is not, yet, support in the GNU/Linux rendering stack for them, so as not to have a feature on a non-free system that is not available on a free one.

It would be nice, for me, if you were to enable those with the code following, but since this is a potentially sensitive issue I preferred to send an issue than a CL. Season the following to taste, but it is a trivial enough patch that it applies on all current versions, and has done for quite some time.

Obviously if you are not comfortable supporting this, I fully support your right to make that choice, as I support RMS upstream having the right to make this decision.

  if build.with? "multicolor-fonts"
    patch do
      url "https://gist.githubusercontent.com/aatxe/260261daf70865fbf1749095de9172c5/raw/214b50c62450be1cbee9f11cecba846dd66c7d06/patch-multicolor-font.diff"
      sha256 "5af2587e986db70999d1a791fca58df027ccbabd75f45e4a2af1602c75511a8c"
    end
  end

native-compile-setup-environment-variables function report error with native comp build

Debugger entered--Lisp error: (file-missing "Opening directory" "No such file or directory" "/usr/local/Cellar/emacs-head@28/28.0.50_1/Emacs.app/Contents/MacOS/lib/gcc")
  native-compile-setup-environment-variables("/Users/wd/.emacs.d/elpa/diminish-20191127.1326" t)

I have checked, there is no /usr/local/Cellar/emacs-head@28/28.0.50_1/Emacs.app/Contents/MacOS/lib directory exits.

I see this function was added through this patch: https://github.com/daviderestivo/homebrew-emacs-head/pull/79/files#diff-7559cf19008a5b1f3889d64ea7f078c04ed22f4954a251d921c6dfaa340faee7

Emacs build command: brew install emacs-head@28 --with-cocoa --with-no-frame-refocus --with-modern-icon-bokehlicia-captiva --with-xwidgets --with-pdumper --with-native-comp

Can't install with modern icon

I am trying to install emacs 28 with --with-modern-icon-doom-cacodemon with the following command.

brew install emacs-head@28 --with-cocoa --with-imagemagick --with-modern-icon-doom-cacodemon

I see messages like

[...]
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons/modern-icon-doom-cacodemon.icns
Already downloaded: /Users/wasimabbas/Library/Caches/Homebrew/downloads/d77353ceea024ae4dfe4e4708c860aa4bc4de3cf98b4ea727cc5fe12c6717e65--modern-icon-doom-cacodemon.icns
[...]

Which tells me the icons themselves are downloaded fine. Then I see

==> ./autogen.sh
==> ./configure --enable-locallisppath=/usr/local/share/emacs/site-lisp --infodir=/usr/local/Cellar/emacs-head@28/28.0.50_1/share/info/emacs --prefix=/usr/local/Cellar/emacs-head@28/28.0.50_1 --without-x --without-dbus --with-imagemagick --with-modules --with-gnutls --with-rsvg --with-xml2 --with-ns
==> make
==> make install
Error: An exception occurred within a child process:
  ResourceMissingError: daviderestivo/emacs-head/emacs-head@28 does not define resource "modern-icon-doom-cacodemon"

I have tried to look through the formula but I don't know enough to work it out.

"Can't find file to patch"

Getting this strange one trying to install:

==> Applying 0009-arm.patch
patching file build-aux/config.guess
can't find file to patch at input line 188
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -ur a/configure b/configure
|--- a/configure	2020-08-04 13:43:32.000000000 -0600
|+++ b/configure	2020-11-25 15:45:10.000000000 -0700
--------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file configure.ac

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

full log:

♓️ /Volumes/tdata🔒 took 5s
❯ brew install emacs-head --HEAD --with-cocoa --with-imagemagick@7 --with-no-frame-refocus --with-mailutils --with-dbus --with-modern-icon-sexy-v1
Updating Homebrew...
==> Installing emacs-head@27 from daviderestivo/emacs-head
==> Downloading https://homebrew.bintray.com/bottles/automake-1.16.3.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/25fe47e5fb1af734423e1e73f0dc53637e89d
######################################################################## 100.0%
==> Downloading https://homebrew.bintray.com/bottles/cmake-3.19.1.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/f1ac09ad5cd3634224b1bde4e8b55856fc0e9
######################################################################## 100.0%
==> Downloading https://homebrew.bintray.com/bottles/libxml2-2.9.10_2.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/2983d5a448504389888720bf951713114ed7f
######################################################################## 100.0%
==> Downloading https://homebrew.bintray.com/bottles/dbus-1.12.20.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/23513ea5d75203fe4374ab37cc4226f23f34e
######################################################################## 100.0%
==> Downloading https://homebrew.bintray.com/bottles/gsasl-1.8.1.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/964ad480f7fafd04051fe76a288b5f109766a
######################################################################## 100.0%
==> Downloading https://homebrew.bintray.com/bottles/mailutils-3.10.catalina.bottle.tar.gz
==> Downloading from https://d29vzk4ow07wi7.cloudfront.net/2a0c02530447ce4edeeaab7b84cec370e342b
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://github.com/emacs-mirror/emacs/commit/868f51324ac96bc3af49a826e1db443548c
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/378b3b9d72aed62ef412623056105bce90fc3eecb7c765716fb11c79942752ba--868f51324ac96bc3af49a826e1db443548c9d6cc.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/9aa035e80d3ab084120a4788c3ebbe29aab330a221dcbc92b8017a51c2ea5aa4--0001-No-frame-refocus-cocoa.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/ea2b3af03b1cefe3a90fd00f5ce19130a8366d1b4892c3d68a902cda45255f62--0005-System-appearance-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/5114adbd047373538671aba91306c6726c556433f223df2af17bc7d7d79381a9--0007-Ligatures-freeze-fix-27.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/aa727383a475fe50cd4aa2fdcce43dc2ca41fdf5e3518a2171dbc236c2a1b9c7--0008-Fix-window-role.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/patch
Already downloaded: /Users/tadhg.obrien/Library/Caches/Homebrew/downloads/57a59c0669ed73addfc95850c1a79840289f1a99023d23d067a4d26a7ea46992--0009-arm.patch
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Downloading https://raw.githubusercontent.com/daviderestivo/homebrew-emacs-head/master/icons
######################################################################## 100.0%
==> Cloning https://github.com/emacs-mirror/emacs.git
Cloning into '/Users/tadhg.obrien/Library/Caches/Homebrew/emacs-head@27--git'...
warning: templates not found in /Users/tadhg.obrien/.acn-security-tools/git-template
Updating files: 100% (4025/4025), done.
==> Checking out branch emacs-27
Already on 'emacs-27'
Your branch is up to date with 'origin/emacs-27'.
==> Installing dependencies for daviderestivo/emacs-head/emacs-head@27: automake, cmake, libxml2, dbus, gsasl and mailutils
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: automake
==> Pouring automake-1.16.3.catalina.bottle.tar.gz
🍺  /usr/local/Cellar/automake/1.16.3: 131 files, 3.4MB
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: cmake
==> Pouring cmake-3.19.1.catalina.bottle.tar.gz
==> Caveats
Emacs Lisp files have been installed to:
  /usr/local/share/emacs/site-lisp/cmake
==> Summary
🍺  /usr/local/Cellar/cmake/3.19.1: 6,366 files, 63.9MB
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: libxml2
==> Pouring libxml2-2.9.10_2.catalina.bottle.tar.gz
==> Caveats
libxml2 is keg-only, which means it was not symlinked into /usr/local,
because macOS already provides this software and installing another version in
parallel can cause all kinds of trouble.

If you need to have libxml2 first in your PATH run:
  echo 'set -g fish_user_paths "/usr/local/opt/libxml2/bin" $fish_user_paths' >> ~/.config/fish/config.fish

For compilers to find libxml2 you may need to set:
  set -gx LDFLAGS "-L/usr/local/opt/libxml2/lib"
  set -gx CPPFLAGS "-I/usr/local/opt/libxml2/include"

For pkg-config to find libxml2 you may need to set:
  set -gx PKG_CONFIG_PATH "/usr/local/opt/libxml2/lib/pkgconfig"

==> Summary
🍺  /usr/local/Cellar/libxml2/2.9.10_2: 280 files, 10.6MB
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: dbus
==> Pouring dbus-1.12.20.catalina.bottle.tar.gz
==> /usr/local/Cellar/dbus/1.12.20/bin/dbus-uuidgen --ensure=/usr/local/var/lib/dbus/machine-id
==> Caveats
To have launchd start dbus now and restart at login:
  brew services start dbus
==> Summary
🍺  /usr/local/Cellar/dbus/1.12.20: 76 files, 2.1MB
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: gsasl
==> Pouring gsasl-1.8.1.catalina.bottle.tar.gz
🍺  /usr/local/Cellar/gsasl/1.8.1: 132 files, 1.6MB
==> Installing daviderestivo/emacs-head/emacs-head@27 dependency: mailutils
==> Pouring mailutils-3.10.catalina.bottle.tar.gz
🍺  /usr/local/Cellar/mailutils/3.10: 242 files, 8.9MB
==> Installing daviderestivo/emacs-head/emacs-head@27 --HEAD --with-dbus --with-mailut
==> Patching
==> Applying 0001-No-frame-refocus-cocoa.patch
patching file src/frame.c
Hunk #1 succeeded at 2060 (offset 60 lines).
==> Applying 0005-System-appearance-27.patch
patching file src/frame.h
patching file src/nsfns.m
patching file src/nsterm.m
Hunk #1 succeeded at 2029 (offset 2 lines).
Hunk #2 succeeded at 5587 (offset 2 lines).
Hunk #3 succeeded at 5833 (offset 2 lines).
Hunk #4 succeeded at 5883 (offset 2 lines).
Hunk #5 succeeded at 6110 (offset 2 lines).
Hunk #6 succeeded at 7597 (offset 2 lines).
Hunk #7 succeeded at 9726 (offset 2 lines).
==> Applying 0007-Ligatures-freeze-fix-27.patch
patching file src/composite.c
Hunk #1 succeeded at 1769 (offset 23 lines).
==> Applying 0008-Fix-window-role.patch
patching file src/nsterm.m
Hunk #1 succeeded at 8642 (offset -126 lines).
==> Applying 868f51324ac96bc3af49a826e1db443548c9d6cc.patch
patching file src/Makefile.in
Hunk #1 succeeded at 337 (offset 1 line).
==> Applying 0009-arm.patch
patching file build-aux/config.guess
can't find file to patch at input line 188
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--------------------------
|diff -ur a/configure b/configure
|--- a/configure	2020-08-04 13:43:32.000000000 -0600
|+++ b/configure	2020-11-25 15:45:10.000000000 -0700
--------------------------
No file to patch.  Skipping patch.
1 out of 1 hunk ignored
patching file configure.ac

If reporting this issue please do so at (not Homebrew/brew or Homebrew/core):
  https://github.com/daviderestivo/homebrew-emacs-head/issues

Please create pull requests instead of asking for help on Homebrew's GitHub,
Twitter or any other official channels.

Display changes to frame settings

The latest build of HEAD on version 28 has an odd issue. Now, when I drag the emacs window from my Mac Retina display to my external display, the font is shrunk way down, and only 1/4 of the frame is filled with text.
Screen Shot 2021-02-16 at 1 52 46 PM

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.