hiroakit / emacs-on-apple

Emacs for Apple devices
GNU General Public License v3.0
8 stars 1 forks source link

Failed to build Emacs v26.3.50 on macOS v10.15.4 with Xcode 11.4.1 #1

Closed hiroakit closed 4 years ago

hiroakit commented 4 years ago

Overview

To reproduce

Steps to reproduce as follows:

git clone -b emacs-26 --single-branch --depth=1 https://git.savannah.gnu.org/git/emacs.git emacs-26 # commit hash is 7497ee44b4
cd emacs-26

./autogen.sh
./configure CC=clang\
            --with-ns\
            --with-modules\
            --without-x\
            --without-selinux\
            --without-makeinfo\
            --without-mail-unlink\
            --without-mailhost\
            --without-pop\
            --without-mailutils
make bootstrap # failed

Workaround

Using the diff.patch , you would get success build Emacs v26.3.50. The patch file is based following command:

git clone -b emacs-26 --single-branch --depth=1 https://git.savannah.gnu.org/git/emacs.git emacs-26 # commit hash is 7497ee44b4
cd emacs-26

patch -p1 -i diff.patch

./autogen.sh
./configure CC=clang\
            --with-ns\
            --with-modules\
            --without-x\
            --without-selinux\
            --without-makeinfo\
            --without-mail-unlink\
            --without-mailhost\
            --without-pop\
            --without-mailutils
make bootstrap
make install   # success

diff.patch

diff.patch is here.

--- a/src/unexmacosx.c  2020-04-27 23:26:24.000000000 +0900
+++ b/src/unexmacosx.c  2020-04-27 23:58:54.000000000 +0900
@@ -97,9 +97,9 @@ along with GNU Emacs.  If not, see <http

 #include "unexec.h"
 #include "lisp.h"
+#include "sysstdio.h"

 #include <errno.h>
-#include <stdio.h>
 #include <fcntl.h>
 #include <stdarg.h>
 #include <stdint.h>
@@ -303,9 +303,9 @@ unexec_error (const char *format, ...)
   va_list ap;

   va_start (ap, format);
-  fprintf (stderr, "unexec: ");
+  fputs ("unexec: ", stderr);
   vfprintf (stderr, format, ap);
-  fprintf (stderr, "\n");
+  putc ('\n', stderr);
   va_end (ap);
   exit (1);
 }
@@ -447,7 +447,7 @@ unexec_regions_recorder (task_t task, vo

   while (num && num_unexec_regions < MAX_UNEXEC_REGIONS)
     {
-      /* Subtract the size of trailing null bytes from filesize.  It
+      /* Subtract the size of trailing NUL bytes from filesize.  It
     can be smaller than vmsize in segment commands.  In such a
     case, trailing bytes are initialized with zeros.  */
       for (p = ranges->address + ranges->size; p > ranges->address; p--)
@@ -503,22 +503,34 @@ unexec_regions_sort_compare (const void 
 static void
 unexec_regions_merge (void)
 {
-  int i, n;
-  unexec_region_info r;
-  vm_size_t padsize;
-
   qsort (unexec_regions, num_unexec_regions, sizeof (unexec_regions[0]),
     &unexec_regions_sort_compare);
-  n = 0;
-  r = unexec_regions[0];
-  padsize = r.range.address & (pagesize - 1);
-  if (padsize)
-    {
-      r.range.address -= padsize;
-      r.range.size += padsize;
-      r.filesize += padsize;
+
+  /* Align each region start address to a page boundary.  */
+  for (unexec_region_info *cur = unexec_regions;
+       cur < unexec_regions + num_unexec_regions; cur++)
+    {
+      vm_size_t padsize = cur->range.address & (pagesize - 1);
+      if (padsize)
+   {
+     cur->range.address -= padsize;
+     cur->range.size += padsize;
+     cur->filesize += padsize;
+
+     unexec_region_info *prev = cur == unexec_regions ? NULL : cur - 1;
+     if (prev
+         && prev->range.address + prev->range.size > cur->range.address)
+       {
+         prev->range.size = cur->range.address - prev->range.address;
+         if (prev->filesize > prev->range.size)
+       prev->filesize = prev->range.size;
+       }
+   }
     }
-  for (i = 1; i < num_unexec_regions; i++)
+
+  int n = 0;
+  unexec_region_info r = unexec_regions[0];
+  for (int i = 1; i < num_unexec_regions; i++)
     {
       if (r.range.address + r.range.size == unexec_regions[i].range.address
      && r.range.size - r.filesize < 2 * pagesize)
@@ -530,17 +542,6 @@ unexec_regions_merge (void)
    {
      unexec_regions[n++] = r;
      r = unexec_regions[i];
-     padsize = r.range.address & (pagesize - 1);
-     if (padsize)
-       {
-         if ((unexec_regions[n-1].range.address
-          + unexec_regions[n-1].range.size) == r.range.address)
-       unexec_regions[n-1].range.size -= padsize;
-
-         r.range.address -= padsize;
-         r.range.size += padsize;
-         r.filesize += padsize;
-       }
    }
     }
   unexec_regions[n++] = r;

macOS environment

Build was executed in the following environment.

$ sw_vers
ProductName:    Mac OS X
ProductVersion: 10.15.4
BuildVersion:   19E287

$ xcodebuild -version
Xcode 11.4.1
Build version 11E503a

$ xcrun --show-sdk-path
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk

$ xcrun --show-sdk-version
10.15.4

$ clang --version
Apple clang version 11.0.3 (clang-1103.0.32.59)
Target: x86_64-apple-darwin19.4.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

Additional context

make bootstrap failure log ```sh make bootstrap /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src bootstrap-clean GEN lisp.mk rm -f temacs core *.core \#* *.o rm -f ../etc/DOC rm -f bootstrap-emacs emacs-26.3.50 rm -f buildobj.h rm -f globals.h gl-stamp rm -f *.res *.tmp rm -f emacs-*.*.*[0-9] emacs deps/* rm -f emacs-module.h epaths.h config.h config.stamp if test -f ./.gdbinit; then \ mv ./.gdbinit ./.gdbinit.save; \ if test -f "./.gdbinit"; then rm -f ./.gdbinit.save; \ else mv ./.gdbinit.save ./.gdbinit; fi; \ fi /Applications/Xcode.app/Contents/Developer/usr/bin/make -C oldXMenu bootstrap-clean rm -f libXMenu11.a *.o deps/* rm -f Makefile rm -fr deps /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lwlib bootstrap-clean rm -f *.o liblw.a \#* deps/* rm -f Makefile rm -fr deps rm -f TAGS /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lib bootstrap-clean rm -f *.[ao] *-t \#* deps/* rm -f core *.stackdump alloca.h byteswap.h dirent.h errno.h execinfo.h fcntl.h getopt.h getopt-cdefs.h inttypes.h limits.h signal.h stdalign.h stddef.h stdint.h stdio.h stdlib.h string.h sys/select.h sys/stat.h sys/time.h sys/types.h time.h unistd.h rm -f Makefile rm -fr deps /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lib-src bootstrap-clean rm -f core *.o *.res rm -f etags ctags emacsclient ebrowse profile hexl movemail make-docfile rm -f TAGS Makefile blessmail /Applications/Xcode.app/Contents/Developer/usr/bin/make -C nt bootstrap-clean rm -f core *.o *.res rm -f runemacs addpm cmdproxy ddeclient rm -f TAGS Makefile *.rc true /Applications/Xcode.app/Contents/Developer/usr/bin/make -C doc/emacs bootstrap-clean rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \ *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs rm -f emacs.dvi emacs-xtra.dvi emacs.html emacs.pdf emacs-xtra.pdf emacs.ps emacs-xtra.ps rm -f Makefile rm -f \ ./../../info/emacs.info \ ./../../info/emacs.info-[1-9] \ ./../../info/emacs.info-[1-9][0-9] rm -f ./emacsver.texi /Applications/Xcode.app/Contents/Developer/usr/bin/make -C doc/misc bootstrap-clean rm -f *.aux *.log *.toc *.c[mp] *.c[mp]s *.fn *.fns \ *.ky *.kys *.op *.ops *.p[gj] *.p[gj]s *.sc *.scs *.ss \ *.t[gp] *.t[gp]s *.vr *.vrs rm -f gnustmp* rm -f *.dvi *.html *.pdf *.ps rm -f Makefile for file in ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede ediff edt eieio emacs-mime epa erc ert eshell eudc efaq eww flymake forms gnus emacs-gnutls htmlfontify idlwave ido info.info mairix-el message mh-e newsticker nxml-mode octave-mode org pcl-cvs pgg rcirc remember reftex sasl sc semantic ses sieve smtpmail speedbar srecode todo-mode tramp url vhdl-mode vip viper widget wisent woman efaq-w32; do \ file=`echo ${file} | sed 's/\.info$//'`.info; \ rm -f \ ./../../info/${file} \ ./../../info/${file}-[1-9] \ ./../../info/${file}-[1-9][0-9]; \ done /Applications/Xcode.app/Contents/Developer/usr/bin/make -C doc/lispref bootstrap-clean rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \ *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs rm -f elisp[12]* vol[12].tmp rm -f elisp.dvi elisp.html elisp.pdf elisp.ps rm -f vol[12].dvi vol[12].pdf vol[12].ps rm -f Makefile rm -f \ ./../../info/elisp.info \ ./../../info/elisp.info-[1-9] \ ./../../info/elisp.info-[1-9][0-9] /Applications/Xcode.app/Contents/Developer/usr/bin/make -C doc/lispintro bootstrap-clean rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \ *.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs rm -f emacs-lisp-intro.dvi emacs-lisp-intro.html emacs-lisp-intro.pdf emacs-lisp-intro.ps rm -f Makefile rm -f \ ./../../info/eintr.info \ ./../../info/eintr.info-[1-9] /Applications/Xcode.app/Contents/Developer/usr/bin/make -C nextstep bootstrap-clean rm -rf /Users/hiro/emacs-26/nextstep/Emacs.app rm -f Makefile rm -f GNUstep/Emacs.base/Resources/Info-gnustep.plist \ GNUstep/Emacs.base/Resources/Emacs.desktop \ Cocoa/Emacs.base/Contents/Info.plist \ Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings /Applications/Xcode.app/Contents/Developer/usr/bin/make -C leim bootstrap-clean rm -f ./../lisp/leim/quail/CCDOSPY.el ./../lisp/leim/quail/Punct.el ./../lisp/leim/quail/QJ.el ./../lisp/leim/quail/SW.el ./../lisp/leim/quail/TONEPY.el ./../lisp/leim/quail/4Corner.el ./../lisp/leim/quail/ARRAY30.el ./../lisp/leim/quail/ECDICT.el ./../lisp/leim/quail/ETZY.el ./../lisp/leim/quail/Punct-b5.el ./../lisp/leim/quail/PY-b5.el ./../lisp/leim/quail/QJ-b5.el ./../lisp/leim/quail/ZOZY.el ./../lisp/leim/quail/tsang-b5.el ./../lisp/leim/quail/quick-b5.el ./../lisp/leim/quail/tsang-cns.el ./../lisp/leim/quail/quick-cns.el ./../lisp/leim/quail/PY.el ./../lisp/leim/quail/ZIRANMA.el ./../lisp/leim/quail/CTLau.el ./../lisp/leim/quail/CTLau-b5.el ./../lisp/leim/leim-list.el /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lisp bootstrap-clean find . -name '*.elc' -delete rm -f ./cus-load.el ./finder-inf.el ./subdirs.el ./eshell/esh-groups.el for dir in admin/grammars admin/unidata admin/charsets; do \ /Applications/Xcode.app/Contents/Developer/usr/bin/make -C $dir bootstrap-clean || exit; \ done make[1]: Nothing to be done for `bootstrap-clean'. rm -f ./*.elc unidata.txt rm -f jisx2131-filter [ ! -d test ] || /Applications/Xcode.app/Contents/Developer/usr/bin/make -C test bootstrap-clean find . '(' -name '*.log' -o -name '*.log~' ')' -delete rm -f ./data/emacs-module/*.o ./data/emacs-module/*.so \ ./data/emacs-module/*.dll find . -name '*.elc' -delete [ ! -f config.log ] || mv -f config.log config.log~ rm -rf ./info rm -f ./etc/refcards/emacsver.tex rm -f config.cache config.log ./doc/man/emacs.1 cd . && ./autogen.sh autoconf Checking whether you have the necessary tools... (Read INSTALL.REPO for more details on building Emacs) Checking for autoconf (need at least version 2.65) ... ok Your system has the required tools. Running 'autoreconf -fi -I m4' ... You can now run './configure'. /Applications/Xcode.app/Contents/Developer/usr/bin/make MAKEFILE_NAME=force-Makefile force-Makefile if [ -x ./config.status ]; then \ ./config.status --recheck; \ else \ ./configure --cache-file=/dev/null; \ fi running CONFIG_SHELL=/bin/sh /bin/sh ./configure CC=clang --with-ns --with-modules --without-x --without-selinux --without-makeinfo --without-mail-unlink --without-mailhost --without-pop --without-mailutils --no-create --no-recursion checking for xcrun... xcrun checking for make... yes checking for GNU Make... make checking build system type... x86_64-apple-darwin19.4.0 checking host system type... x86_64-apple-darwin19.4.0 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether clang accepts -g... yes checking for clang option to enable C11 features... none needed checking for ar... ar checking whether clang and cc understand -c and -o together... yes checking for putenv... yes checking for sbrk... yes checking for fchmod... yes checking for readlinkat... yes checking for explicit_bzero... no checking for faccessat... yes checking for fcntl... yes checking for fdopendir... yes checking for fstatat... yes checking for fsync... yes checking for gettimeofday... yes checking for nanotime... no checking for lstat... yes checking for mkostemp... yes checking for tzset... yes checking for pipe2... no checking for pselect... yes checking for readlink... yes checking for strtoimax... yes checking for symlink... yes checking for localtime_r... yes checking for timegm... yes checking for futimes... yes checking for futimesat... no checking for futimens... yes checking for utimensat... yes checking for lutimes... yes checking for getdtablesize... yes checking how to run the C preprocessor... clang -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking whether _XOPEN_SOURCE should be defined... no checking for Minix Amsterdam compiler... no checking for ranlib... ranlib checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking whether clang accepts -g3 -O2... yes checking whether the compiler is clang... yes checking whether C compiler handles -Werror -Wunknown-warning-option... yes checking whether C compiler handles -Wno-switch... yes checking whether C compiler handles -Wno-pointer-sign... yes checking whether C compiler handles -Wno-string-plus-int... yes checking whether C compiler handles -Wno-unknown-attributes... yes checking whether C compiler handles -Wno-initializer-overrides... yes checking whether C compiler handles -Wno-tautological-compare... yes checking whether C compiler handles -Wno-tautological-constant-out-of-range-compare... yes checking for a BSD-compatible install... /usr/local/bin/ginstall -c checking command to symlink files in the same directory... ln -s checking for install-info... /usr/bin/install-info checking for gzip... /usr/bin/gzip checking for 'find' args to delete a file... -delete checking for -znocombreloc... no checking whether addresses are sanitized... no checking for library containing sqrt... none required checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for machine/soundcard.h... no checking for sys/soundcard.h... no checking for soundcard.h... no checking for mmsystem.h... no checking for _oss_ioctl in -lossaudio... no checking for ALSA... no checking for linux/fs.h... no checking for malloc.h... no checking for sys/systeminfo.h... no checking for sys/sysinfo.h... no checking for coff.h... no checking for pty.h... no checking for sys/resource.h... yes checking for sys/utsname.h... yes checking for pwd.h... yes checking for utmp.h... yes checking for util.h... yes checking for sys/prctl.h... no checking for sys/socket.h... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for sys/param.h... yes checking for pthread.h... yes checking for malloc/malloc.h... yes checking for sys/un.h... yes checking for dirent.h... yes checking for execinfo.h... yes checking for stdio_ext.h... no checking for getopt.h... yes checking for sys/cdefs.h... yes checking for sys/time.h... yes checking for limits.h... yes checking for wchar.h... yes checking for stdint.h... (cached) yes checking for inttypes.h... (cached) yes checking for sys/select.h... yes checking for sys/stat.h... (cached) yes checking for ADDR_NO_RANDOMIZE... no checking for term.h... yes checking whether time.h and sys/time.h may both be included... yes checking whether sys_siglist is declared... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for net/if.h... yes checking for ifaddrs.h... yes checking for net/if_dl.h... yes checking for struct ifreq.ifr_flags... yes checking for struct ifreq.ifr_hwaddr... no checking for struct ifreq.ifr_netmask... no checking for struct ifreq.ifr_broadaddr... yes checking for struct ifreq.ifr_addr... yes checking for struct ifreq.ifr_addr.sa_len... yes checking whether gcc understands -MMD -MF... yes checking for X... disabled checking AppKit/AppKit.h usability... yes checking AppKit/AppKit.h presence... yes checking for AppKit/AppKit.h... yes checking for Mac OS X 10.6 or newer... yes checking for gcc... gcc checking whether we are using the GNU Objective C compiler... yes checking whether gcc accepts -g... yes checking if the Objective C compiler supports instancetype... yes checking whether malloc is Doug Lea style... no checking for getpagesize... yes checking for working mmap... yes checking for main in -lXbsd... no checking for pthread library... none needed checking for thread support... yes checking for RSVG... no checking for IMAGEMAGICK... no checking for getaddrinfo_a in -lanl... no checking for DBUS... no checking for LIBGNUTLS... yes checking for LIBSYSTEMD... no checking sys/inotify.h usability... no checking sys/inotify.h presence... no checking for sys/inotify.h... no checking for KQUEUE... no checking for library containing kqueue... none required checking for jpeglib 6b or later... -ljpeg checking for LCMS2... yes checking for library containing inflateEnd... -lz checking for dladdr... yes checking for dlfunc... no checking gpm.h usability... no checking gpm.h presence... no checking for gpm.h... no checking for LIBXML2... yes checking for htmlReadMemory in -lxml2... yes checking for maillock in -lmail... no checking for maillock in -llockfile... no checking for liblockfile.so... no checking maillock.h usability... no checking maillock.h presence... no checking for maillock.h... no checking for accept4... no checking for fchdir... yes checking for gethostname... yes checking for getrusage... yes checking for get_current_dir_name... no checking for lrand48... yes checking for random... yes checking for rint... yes checking for trunc... yes checking for select... yes checking for getpagesize... (cached) yes checking for setlocale... yes checking for newlocale... yes checking for getrlimit... yes checking for setrlimit... yes checking for shutdown... yes checking for pthread_sigmask... (cached) yes checking for strsignal... yes checking for setitimer... yes checking for sendto... yes checking for recvfrom... yes checking for getsockname... yes checking for getifaddrs... yes checking for freeifaddrs... yes checking for gai_strerror... yes checking for sync... yes checking for getpwent... yes checking for endpwent... yes checking for getgrent... yes checking for endgrent... yes checking for cfmakeraw... yes checking for cfsetspeed... yes checking for __executable_start... no checking for log2... yes checking for prctl... no checking for aligned_alloc... yes checking whether aligned_alloc is declared... yes checking for __builtin_frame_address... yes checking for __builtin_unwind_init... yes checking for _LARGEFILE_SOURCE value needed for large files... no checking for grantpt... yes checking for getpt... no checking for posix_openpt... yes checking for library containing tputs... -lncurses checking for timerfd interface... no checking whether signals can be handled on alternate stack... yes checking valgrind/valgrind.h usability... no checking valgrind/valgrind.h presence... no checking for valgrind/valgrind.h... no checking for struct unipair.unicode... no checking for socket... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking for pid_t... yes checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking for snprintf... yes checking whether GLib is linked in... no checking for nl_langinfo and CODESET... yes checking for mbstate_t... yes checking for _setjmp... yes checking for sigsetjmp... yes checking for usable FIONREAD... yes checking for usable SIGIO... yes checking for working alloca.h... yes checking for alloca... yes checking for unsigned long long int... yes checking whether byte ordering is bigendian... no checking whether the preprocessor supports include_next... yes checking whether system header files limit the line length... no checking whether strtold conforms to C99... yes checking if environ is properly declared... no checking for complete errno.h... yes checking whether lstat correctly handles trailing slash... no checking for mode_t... yes checking whether fdatasync is declared... no checking for st_dm_mode in struct stat... no checking whether strmode is declared... yes checking for gawk... no checking for mawk... no checking for nawk... no checking for awk... awk checking for getopt.h... (cached) yes checking for getopt_long_only... yes checking whether getopt is POSIX compatible... no checking for C/C++ restrict keyword... __restrict checking for struct timeval... yes checking for wide-enough struct timeval.tv_sec member... yes checking whether limits.h has ULLONG_WIDTH etc.... no checking for long long int... yes checking whether stdint.h conforms to C99... yes checking whether stdint.h predates C++11... no checking whether stdint.h has UINTMAX_WIDTH etc.... no checking whether memrchr is declared... no checking whether defines MIN and MAX... no checking whether defines MIN and MAX... yes checking whether time_t is signed... yes checking whether alarm is declared... yes checking for working mktime... no checking whether struct tm is in sys/time.h or time.h... time.h checking for struct tm.tm_zone... yes checking for struct tm.tm_gmtoff... yes checking whether is self-contained... yes checking for sigset_t... yes checking for wchar_t... yes checking whether strtoimax is declared... yes checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p checking whether stat file-mode macros are broken... no checking for struct timespec in ... yes checking whether clearerr_unlocked is declared... yes checking whether feof_unlocked is declared... yes checking whether ferror_unlocked is declared... yes checking whether fflush_unlocked is declared... no checking whether fgets_unlocked is declared... no checking whether fputc_unlocked is declared... no checking whether fputs_unlocked is declared... no checking whether fread_unlocked is declared... no checking whether fwrite_unlocked is declared... no checking whether getc_unlocked is declared... yes checking whether getchar_unlocked is declared... yes checking whether putc_unlocked is declared... yes checking whether putchar_unlocked is declared... yes checking whether the utimes function works... yes checking type of array argument to getgroups... gid_t checking whether getdtablesize is declared... yes checking for O_CLOEXEC... yes checking for promoted mode_t type... int checking sys/acl.h usability... yes checking sys/acl.h presence... yes checking for sys/acl.h... yes checking for library containing acl_get_file... none required checking for acl_get_file... yes checking for acl_get_fd... yes checking for acl_set_file... yes checking for acl_set_fd... yes checking for acl_free... yes checking for acl_from_mode... no checking for acl_from_text... yes checking for acl_delete_def_file... yes checking for acl_extended_file... no checking for acl_delete_fd_np... yes checking for acl_delete_file_np... yes checking for acl_copy_ext_native... yes checking for acl_create_entry_np... yes checking for acl_to_short_text... no checking for acl_free_text... no checking for working acl_get_file... yes checking acl/libacl.h usability... no checking acl/libacl.h presence... no checking for acl/libacl.h... no checking for acl_entries... no checking for ACL_FIRST_ENTRY... yes checking for ACL_TYPE_EXTENDED... yes checking for alloca as a compiler built-in... yes checking byteswap.h usability... no checking byteswap.h presence... no checking for byteswap.h... no checking for library containing clock_gettime... none required checking for clock_gettime... yes checking for clock_settime... yes checking for d_type member in directory struct... yes checking whether dup2 works... yes checking for library containing backtrace_symbols_fd... none required checking for explicit_memset... no checking for access... yes checking whether fcntl handles F_DUPFD correctly... yes checking whether fcntl understands F_DUPFD_CLOEXEC... yes checking for fdatasync... yes checking whether fdopendir is declared... yes checking whether fdopendir works... yes checking for flexible array member... yes checking for __fpending... no checking whether fstatat (..., 0) works... yes checking for getloadavg... yes checking sys/loadavg.h usability... no checking sys/loadavg.h presence... no checking for sys/loadavg.h... no checking whether getloadavg is declared... yes checking whether gettimeofday clobbers localtime buffer... no checking for gettimeofday with POSIX signature... yes checking for memrchr... no checking whether signature of pselect conforms to POSIX... yes checking whether pselect detects invalid fds... yes checking whether pthread_sigmask works without -lpthread... yes checking whether pthread_sigmask returns error numbers... yes checking whether pthread_sigmask unblocks signals correctly... guessing yes checking whether readlink signature is correct... yes checking whether readlink handles trailing slash correctly... no checking whether readlinkat signature is correct... yes checking for sig2str... no checking for volatile sig_atomic_t... yes checking for sighandler_t... no checking for socklen_t... yes checking for ssize_t... yes checking for struct stat.st_atim.tv_nsec... no checking for struct stat.st_atimespec.tv_nsec... yes checking for struct stat.st_birthtimespec.tv_nsec... yes checking for working stdalign.h... yes checking for max_align_t... yes checking whether NULL can be used in arbitrary expressions... yes checking which flavor of printf attribute matches inttypes macros... system checking for stpcpy... yes checking whether strtoimax works... yes checking whether symlink handles trailing slash correctly... no checking for nlink_t... yes checking whether localtime_r is declared... yes checking whether localtime_r is compatible with its POSIX signature... yes checking for timezone_t... no checking for library containing timer_settime... no checking for timer_settime... no checking for variable-length arrays... yes checking whether open recognizes a trailing slash... no checking for euidaccess... no checking libgen.h usability... yes checking libgen.h presence... yes checking for libgen.h... yes checking for getgroups... yes checking for working getgroups... yes checking for library containing eaccess... no checking for eaccess... no checking for group_member... no checking for getgroups... (cached) yes checking for working getgroups... (cached) yes checking whether getgroups handles negative values... no checking for __mktime_internal... no checking for clang option to disable position independent executables... no Configured for 'x86_64-apple-darwin19.4.0'. Where should the build process find the source code? . What compiler should emacs be built with? clang -g3 -O2 Should Emacs use the GNU version of malloc? no (The GNU allocators don't work with this system configuration.) Should Emacs use a relocating allocator for buffers? no Should Emacs use mmap(2) for buffer allocation? no What window system should Emacs use? nextstep What toolkit should Emacs use? none Where do we find X Windows header files? NONE Where do we find X Windows libraries? NONE Does Emacs use -lXaw3d? no Does Emacs use -lXpm? no Does Emacs use -ljpeg? yes Does Emacs use -ltiff? no Does Emacs use a gif library? no Does Emacs use a png library? no Does Emacs use -lrsvg-2? no Does Emacs use cairo? no Does Emacs use -llcms2? yes Does Emacs use imagemagick (version 6)? no Does Emacs support sound? no Does Emacs use -lgpm? no Does Emacs use -ldbus? no Does Emacs use -lgconf? no Does Emacs use GSettings? no Does Emacs use a file notification library? yes (kqueue) Does Emacs use access control lists? yes Does Emacs use -lselinux? no Does Emacs use -lgnutls? yes Does Emacs use -lxml2? yes Does Emacs use -lfreetype? no Does Emacs use -lm17n-flt? no Does Emacs use -lotf? no Does Emacs use -lxft? no Does Emacs use -lsystemd? no Does Emacs directly use zlib? yes Does Emacs have dynamic modules support? yes Does Emacs use toolkit scroll bars? yes Does Emacs support Xwidgets (requires gtk3)? no Does Emacs have threading support in lisp? yes You must run "make install" in order to test the built application. The installed application will go to nextstep/Emacs.app and can be run or moved from there. The application will be fully self-contained. configure: creating ./config.status configure: You might want to install GNU Mailutils and use './configure --with-mailutils'. MAKE='/Applications/Xcode.app/Contents/Developer/usr/bin/make' ./config.status config.status: creating src/emacs-module.h config.status: creating nextstep/Cocoa/Emacs.base/Contents/Info.plist config.status: creating nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings config.status: creating Makefile config.status: creating lib/gnulib.mk config.status: creating ./doc/man/emacs.1 config.status: creating lib/Makefile config.status: creating lib-src/Makefile config.status: creating oldXMenu/Makefile config.status: creating doc/emacs/Makefile config.status: creating doc/misc/Makefile config.status: creating doc/lispintro/Makefile config.status: creating doc/lispref/Makefile config.status: creating src/Makefile config.status: creating lwlib/Makefile config.status: creating lisp/Makefile config.status: creating leim/Makefile config.status: creating nextstep/Makefile config.status: creating nt/Makefile config.status: creating test/Makefile config.status: creating admin/charsets/Makefile config.status: creating admin/unidata/Makefile config.status: creating admin/grammars/Makefile config.status: creating src/config.h config.status: executing src/epaths.h commands config.status: executing src/.gdbinit commands config.status: executing doc/emacs/emacsver.texi commands config.status: executing etc-refcards-emacsver.tex commands /Applications/Xcode.app/Contents/Developer/usr/bin/make all /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lib all GEN alloca.h GEN byteswap.h GEN dirent.h GEN fcntl.h GEN getopt.h GEN getopt-cdefs.h GEN inttypes.h GEN limits.h GEN signal.h GEN stdint.h GEN stdio.h GEN stdlib.h GEN string.h GEN sys/select.h GEN sys/stat.h GEN sys/time.h GEN sys/types.h GEN time.h GEN unistd.h CC acl_entries.o CC euidaccess.o CC explicit_bzero.o CC faccessat.o CC fpending.o CC fstatat.o CC getgroups.o CC getopt.o CC getopt1.o CC group-member.o CC lstat.o CC memrchr.o CC mktime.o CC open.o CC openat-proc.o CC readlink.o CC readlinkat.o CC sig2str.o CC symlink.o CC time_rz.o CC timegm.o CC acl-errno-valid.o CC acl-internal.o CC get-permissions.o CC set-permissions.o CC allocator.o CC binary-io.o CC c-ctype.o CC c-strcasecmp.o CC c-strncasecmp.o CC careadlinkat.o CC cloexec.o CC close-stream.o CC count-leading-zeros.o CC count-one-bits.o CC count-trailing-zeros.o CC md5.o CC sha1.o CC sha256.o CC sha512.o CC dtoastr.o CC dtotimespec.o CC filemode.o CC filevercmp.o CC gettime.o CC nstrftime.o CC pipe2.o CC qcopy-acl.o CC stat-time.o CC tempname.o CC timespec.o CC timespec-add.o CC timespec-sub.o CC u64.o CC unistd.o CC utimens.o CC openat-die.o CC save-cwd.o AR libgnu.a /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libgnu.a(u64.o) has no symbols /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libgnu.a(unistd.o) has no symbols /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libgnu.a(u64.o) has no symbols /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: libgnu.a(unistd.o) has no symbols /Applications/Xcode.app/Contents/Developer/usr/bin/make -C lib-src all CC regex.o CCLD etags CCLD ctags CCLD emacsclient CCLD ebrowse CCLD profile CCLD hexl CC pop.o CCLD movemail CCLD make-docfile /Applications/Xcode.app/Contents/Developer/usr/bin/make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' all GEN globals.h CC dispnew.o CC frame.o CC scroll.o CC xdisp.o CC menu.o CC window.o CC charset.o CC coding.o CC category.o CC ccl.o CC character.o CC chartab.o CC bidi.o CC cm.o CC term.o CC terminal.o CC xfaces.o CC emacs.o CC keyboard.o CC macros.o CC keymap.o CC sysdep.o CC buffer.o CC filelock.o CC insdel.o CC marker.o CC minibuf.o CC fileio.o CC dired.o CC cmds.o CC casetab.o CC casefiddle.o CC indent.o CC search.o CC regex.o CC undo.o CC alloc.o CC data.o GEN buildobj.h CC doc.o CC editfns.o CC callint.o CC eval.o CC floatfns.o CC fns.o CC font.o CC print.o CC lread.o CC dynlib.o CC emacs-module.o CC syntax.o CC unexmacosx.o CC bytecode.o CC process.o CC gnutls.o CC callproc.o CC region-cache.o CC sound.o CC atimer.o CC doprnt.o CC intervals.o CC textprop.o CC composite.o CC xml.o CC lcms.o CC kqueue.o CC profiler.o CC decompress.o CC thread.o CC systhread.o CC fontset.o CC fringe.o CC image.o CC nsterm.o nsterm.m:173:16: warning: 'colorUsingColorSpaceName:' is deprecated: first deprecated in macOS 10.14 - Use -colorUsingType: or -colorUsingColorSpace: instead [-Wdeprecated-declarations] return [self colorUsingColorSpaceName: NSCalibratedRGBColorSpace]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:416:1: note: 'colorUsingColorSpaceName:' has been explicitly marked deprecated here - (nullable NSColor *)colorUsingColorSpaceName:(NSColorSpaceName)name API_DEPRECATED("Use -colorUsingType: or -colorUsingColorSpace: instead", macos(10.0,10.14)); ^ nsterm.m:2680:26: warning: 'scrollRect:by:' is deprecated: first deprecated in macOS 10.14 - Use NSScrollView to achieve scrolling views. [-Wdeprecated-declarations] [FRAME_NS_VIEW (f) scrollRect: src by: delta]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSView.h:213:1: note: 'scrollRect:by:' has been explicitly marked deprecated here - (void)scrollRect:(NSRect)rect by:(NSSize)delta API_DEPRECATED("Use NSScrollView to achieve scrolling views.", macos(10.0,10.14)); ^ nsterm.m:5296:47: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] ns_send_types = [[NSArray arrayWithObjects: NSStringPboardType, nil] retain]; ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:5297:49: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] ns_return_types = [[NSArray arrayWithObjects: NSStringPboardType, nil] ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:5300:29: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] NSStringPboardType, ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:5301:29: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] NSTabularTextPboardType, ^~~~~~~~~~~~~~~~~~~~~~~ NSPasteboardTypeTabularText /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:315:32: note: 'NSTabularTextPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeTabularText", macos(10.0,10.14)); ^ nsterm.m:5302:29: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations] NSFilenamesPboardType, ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14)); ^ nsterm.m:5303:29: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] NSURLPboardType, nil] retain]; ^~~~~~~~~~~~~~~ NSPasteboardTypeURL /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14)); ^ nsterm.m:6044:18: warning: 'setOnMouseEntered:' is deprecated: first deprecated in macOS 10.13 - setOnMouseEntered is unused and should not be called [-Wdeprecated-declarations] [currentCursor setOnMouseEntered: YES]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h:83:1: note: 'setOnMouseEntered:' has been explicitly marked deprecated here - (void)setOnMouseEntered:(BOOL)flag API_DEPRECATED("setOnMouseEntered is unused and should not be called", macos(10.0,10.13)); ^ nsterm.m:8186:35: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations] else if ([type isEqualToString: NSFilenamesPboardType]) ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14)); ^ nsterm.m:8207:35: warning: 'NSURLPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] else if ([type isEqualToString: NSURLPboardType]) ^~~~~~~~~~~~~~~ NSPasteboardTypeURL /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:321:32: note: 'NSURLPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSURLPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeURL", macos(10.0,10.14)); ^ nsterm.m:8229:35: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] else if ([type isEqualToString: NSStringPboardType] ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:8230:38: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] || [type isEqualToString: NSTabularTextPboardType]) ^~~~~~~~~~~~~~~~~~~~~~~ NSPasteboardTypeTabularText /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:315:32: note: 'NSTabularTextPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeTabularText", macos(10.0,10.14)); ^ nsterm.m:8292:29: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] if ([types containsObject:NSStringPboardType] == NO) { ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:8306:44: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] typesDeclared = [NSArray arrayWithObject:NSStringPboardType]; ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsterm.m:8818:27: warning: 'setOnMouseEntered:' is deprecated: first deprecated in macOS 10.13 - setOnMouseEntered is unused and should not be called [-Wdeprecated-declarations] [[NSCursor arrowCursor] setOnMouseEntered: YES]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCursor.h:83:1: note: 'setOnMouseEntered:' has been explicitly marked deprecated here - (void)setOnMouseEntered:(BOOL)flag API_DEPRECATED("setOnMouseEntered is unused and should not be called", macos(10.0,10.13)); ^ nsterm.m:8960:10: warning: 'NSScrollerDecrementLine' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] case NSScrollerDecrementLine: ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h:25:5: note: 'NSScrollerDecrementLine' has been explicitly marked deprecated here NSScrollerDecrementLine API_DEPRECATED("", macos(10.0,10.14)) = 4, ^ nsterm.m:8962:10: warning: 'NSScrollerIncrementLine' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] case NSScrollerIncrementLine: ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSScroller.h:26:5: note: 'NSScrollerIncrementLine' has been explicitly marked deprecated here NSScrollerIncrementLine API_DEPRECATED("", macos(10.0,10.14)) = 5, ^ 18 warnings generated. CC nsfns.o nsfns.m:1900:10: warning: 'NSBackingStoreRetained' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] case NSBackingStoreRetained: ^~~~~~~~~~~~~~~~~~~~~~ NSBackingStoreBuffered /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:97:5: note: 'NSBackingStoreRetained' has been explicitly marked deprecated here NSBackingStoreRetained API_DEPRECATED_WITH_REPLACEMENT("NSBackingStoreBuffered", macos(10.0,10.13)) = 0, ^ nsfns.m:1902:10: warning: 'NSBackingStoreNonretained' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] case NSBackingStoreNonretained: ^~~~~~~~~~~~~~~~~~~~~~~~~ NSBackingStoreBuffered /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:98:5: note: 'NSBackingStoreNonretained' has been explicitly marked deprecated here NSBackingStoreNonretained API_DEPRECATED_WITH_REPLACEMENT("NSBackingStoreBuffered", macos(10.0,10.13)) = 1, ^ nsfns.m:1957:10: warning: 'NSBackingStoreRetained' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] case NSBackingStoreRetained: ^~~~~~~~~~~~~~~~~~~~~~ NSBackingStoreBuffered /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:97:5: note: 'NSBackingStoreRetained' has been explicitly marked deprecated here NSBackingStoreRetained API_DEPRECATED_WITH_REPLACEMENT("NSBackingStoreBuffered", macos(10.0,10.13)) = 0, ^ nsfns.m:1958:10: warning: 'NSBackingStoreNonretained' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] case NSBackingStoreNonretained: ^~~~~~~~~~~~~~~~~~~~~~~~~ NSBackingStoreBuffered /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphics.h:98:5: note: 'NSBackingStoreNonretained' has been explicitly marked deprecated here NSBackingStoreNonretained API_DEPRECATED_WITH_REPLACEMENT("NSBackingStoreBuffered", macos(10.0,10.13)) = 1, ^ 4 warnings generated. CC nsmenu.o nsmenu.m:670:25: warning: 'NSOnState' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] [item setState: NSOnState]; ^~~~~~~~~ NSControlStateValueOn /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h:351:34: note: 'NSOnState' has been explicitly marked deprecated here static const NSControlStateValue NSOnState API_DEPRECATED_WITH_REPLACEMENT("NSControlStateValueOn", macos(10.0,10.14)) = NSControlStateValueOn; ^ nsmenu.m:672:25: warning: 'NSOffState' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] [item setState: NSOffState]; ^~~~~~~~~~ NSControlStateValueOff /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSCell.h:350:34: note: 'NSOffState' has been explicitly marked deprecated here static const NSControlStateValue NSOffState API_DEPRECATED_WITH_REPLACEMENT("NSControlStateValueOff", macos(10.0,10.14)) = NSControlStateValueOff; ^ nsmenu.m:1588:24: warning: 'NSRoundedBezelStyle' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] [cell setBezelStyle: NSRoundedBezelStyle]; ^~~~~~~~~~~~~~~~~~~ NSBezelStyleRounded /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSButtonCell.h:118:27: note: 'NSRoundedBezelStyle' has been explicitly marked deprecated here static const NSBezelStyle NSRoundedBezelStyle API_DEPRECATED_WITH_REPLACEMENT("NSBezelStyleRounded", macos(10.0,10.14)) = NSBezelStyleRounded; ^ nsmenu.m:1601:9: warning: 'setOneShot:' is deprecated: first deprecated in macOS 10.14 - This property does not do anything and should not be used [-Wdeprecated-declarations] [self setOneShot: YES]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:831:35: note: property 'oneShot' is declared deprecated here @property (getter=isOneShot) BOOL oneShot API_DEPRECATED("This property does not do anything and should not be used", macos(10.0,10.14)); ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSWindow.h:831:35: note: 'setOneShot:' has been explicitly marked deprecated here 4 warnings generated. CC nsselect.o nsselect.m:57:38: warning: 'NSGeneralPboard' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] if (EQ (sym, QCLIPBOARD)) return NSGeneralPboard; ^~~~~~~~~~~~~~~ NSPasteboardNameGeneral /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:334:32: note: 'NSGeneralPboard' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardName NSGeneralPboard API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardNameGeneral", macos(10.0,10.13)); ^ nsselect.m:60:38: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] if (EQ (sym, QTEXT)) return NSStringPboardType; ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsselect.m:73:27: warning: 'NSGeneralPboard' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] if ([t isEqualToString: NSGeneralPboard]) ^~~~~~~~~~~~~~~ NSPasteboardNameGeneral /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:334:32: note: 'NSGeneralPboard' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardName NSGeneralPboard API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardNameGeneral", macos(10.0,10.13)); ^ nsselect.m:79:27: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] if ([t isEqualToString: NSStringPboardType]) ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsselect.m:81:27: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations] if ([t isEqualToString: NSFilenamesPboardType]) ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14)); ^ nsselect.m:83:27: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] if ([t isEqualToString: NSTabularTextPboardType]) ^~~~~~~~~~~~~~~~~~~~~~~ NSPasteboardTypeTabularText /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:315:32: note: 'NSTabularTextPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeTabularText", macos(10.0,10.14)); ^ nsselect.m:196:22: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] eassert (gtype == NSStringPboardType); ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsselect.m:348:10: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] type = NSStringPboardType; ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsselect.m:472:36: warning: 'NSGeneralPboard' is deprecated: first deprecated in macOS 10.13 [-Wdeprecated-declarations] [NSNumber numberWithLong:0], NSGeneralPboard, ^~~~~~~~~~~~~~~ NSPasteboardNameGeneral /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:334:32: note: 'NSGeneralPboard' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardName NSGeneralPboard API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardNameGeneral", macos(10.0,10.13)); ^ nsselect.m:475:36: warning: 'NSStringPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] [NSNumber numberWithLong:0], NSStringPboardType, ^~~~~~~~~~~~~~~~~~ NSPasteboardTypeString /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:311:32: note: 'NSStringPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSStringPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeString", macos(10.0,10.14)); ^ nsselect.m:476:36: warning: 'NSFilenamesPboardType' is deprecated: first deprecated in macOS 10.14 - Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead [-Wdeprecated-declarations] [NSNumber numberWithLong:0], NSFilenamesPboardType, ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:312:32: note: 'NSFilenamesPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSFilenamesPboardType API_DEPRECATED("Create multiple pasteboard items with NSPasteboardTypeFileURL or kUTTypeFileURL instead", macos(10.0,10.14)); ^ nsselect.m:477:36: warning: 'NSTabularTextPboardType' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] [NSNumber numberWithLong:0], NSTabularTextPboardType, ^~~~~~~~~~~~~~~~~~~~~~~ NSPasteboardTypeTabularText /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSPasteboard.h:315:32: note: 'NSTabularTextPboardType' has been explicitly marked deprecated here APPKIT_EXTERN NSPasteboardType NSTabularTextPboardType API_DEPRECATED_WITH_REPLACEMENT("NSPasteboardTypeTabularText", macos(10.0,10.14)); ^ 12 warnings generated. CC nsimage.o nsimage.m:298:14: warning: 'colorSpaceName' is deprecated: first deprecated in macOS 10.14 - Use -type and NSColorType instead [-Wdeprecated-declarations] if ([color colorSpaceName] != NSCalibratedRGBColorSpace) ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:404:45: note: property 'colorSpaceName' is declared deprecated here @property (readonly, copy) NSColorSpaceName colorSpaceName API_DEPRECATED("Use -type and NSColorType instead", macos(10.0,10.14)); ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:404:45: note: 'colorSpaceName' has been explicitly marked deprecated here nsimage.m:299:23: warning: 'colorUsingColorSpaceName:' is deprecated: first deprecated in macOS 10.14 - Use -colorUsingType: or -colorUsingColorSpace: instead [-Wdeprecated-declarations] rgbColor = [color colorUsingColorSpaceName: NSCalibratedRGBColorSpace]; ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSColor.h:416:1: note: 'colorUsingColorSpaceName:' has been explicitly marked deprecated here - (nullable NSColor *)colorUsingColorSpaceName:(NSColorSpaceName)name API_DEPRECATED("Use -colorUsingType: or -colorUsingColorSpace: instead", macos(10.0,10.14)); ^ 2 warnings generated. CC macfont.o macfont.m:2827:49: warning: 'graphicsPort' is deprecated: first deprecated in macOS 10.14 [-Wdeprecated-declarations] context = [[NSGraphicsContext currentContext] graphicsPort]; ^~~~~~~~~~~~ CGContext /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h:111:28: note: property 'graphicsPort' is declared deprecated here @property (readonly) void *graphicsPort NS_RETURNS_INNER_POINTER API_DEPRECATED_WITH_REPLACEMENT("CGContext", macos(10.0,10.14)); ^ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSGraphicsContext.h:111:28: note: 'graphicsPort' has been explicitly marked deprecated here 1 warning generated. CC terminfo.o CC lastfile.o /Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../admin/charsets all GEN ../../etc/charsets/8859-2.map GEN ../../etc/charsets/8859-3.map GEN ../../etc/charsets/8859-4.map GEN ../../etc/charsets/8859-5.map GEN ../../etc/charsets/8859-6.map GEN ../../etc/charsets/8859-7.map GEN ../../etc/charsets/8859-8.map GEN ../../etc/charsets/8859-9.map GEN ../../etc/charsets/8859-10.map GEN ../../etc/charsets/8859-11.map GEN ../../etc/charsets/8859-13.map GEN ../../etc/charsets/8859-14.map GEN ../../etc/charsets/8859-15.map GEN ../../etc/charsets/8859-16.map GEN ../../etc/charsets/IBM037.map GEN ../../etc/charsets/IBM038.map GEN ../../etc/charsets/IBM256.map GEN ../../etc/charsets/IBM273.map GEN ../../etc/charsets/IBM274.map GEN ../../etc/charsets/IBM275.map GEN ../../etc/charsets/IBM277.map GEN ../../etc/charsets/IBM278.map GEN ../../etc/charsets/IBM280.map GEN ../../etc/charsets/IBM281.map GEN ../../etc/charsets/IBM284.map GEN ../../etc/charsets/IBM285.map GEN ../../etc/charsets/IBM290.map GEN ../../etc/charsets/IBM297.map GEN ../../etc/charsets/IBM420.map GEN ../../etc/charsets/IBM423.map GEN ../../etc/charsets/IBM424.map GEN ../../etc/charsets/IBM437.map GEN ../../etc/charsets/IBM500.map GEN ../../etc/charsets/IBM850.map GEN ../../etc/charsets/IBM851.map GEN ../../etc/charsets/IBM852.map GEN ../../etc/charsets/IBM855.map GEN ../../etc/charsets/IBM856.map GEN ../../etc/charsets/IBM857.map GEN ../../etc/charsets/IBM860.map GEN ../../etc/charsets/IBM861.map GEN ../../etc/charsets/IBM862.map GEN ../../etc/charsets/IBM863.map GEN ../../etc/charsets/IBM864.map GEN ../../etc/charsets/IBM865.map GEN ../../etc/charsets/IBM866.map GEN ../../etc/charsets/IBM868.map GEN ../../etc/charsets/IBM869.map GEN ../../etc/charsets/IBM870.map GEN ../../etc/charsets/IBM871.map GEN ../../etc/charsets/IBM874.map GEN ../../etc/charsets/IBM875.map GEN ../../etc/charsets/IBM880.map GEN ../../etc/charsets/IBM891.map GEN ../../etc/charsets/IBM903.map GEN ../../etc/charsets/IBM904.map GEN ../../etc/charsets/IBM905.map GEN ../../etc/charsets/IBM918.map GEN ../../etc/charsets/IBM1004.map GEN ../../etc/charsets/IBM1026.map GEN ../../etc/charsets/IBM1047.map GEN ../../etc/charsets/CP737.map GEN ../../etc/charsets/CP775.map GEN ../../etc/charsets/CP1125.map GEN ../../etc/charsets/CP1250.map GEN ../../etc/charsets/CP1251.map GEN ../../etc/charsets/CP1252.map GEN ../../etc/charsets/CP1253.map GEN ../../etc/charsets/CP1254.map GEN ../../etc/charsets/CP1255.map GEN ../../etc/charsets/CP1256.map GEN ../../etc/charsets/CP1257.map GEN ../../etc/charsets/CP1258.map GEN ../../etc/charsets/CP10007.map GEN ../../etc/charsets/CP720.map GEN ../../etc/charsets/CP858.map GEN ../../etc/charsets/GB2312.map GEN ../../etc/charsets/GBK.map GEN ../../etc/charsets/GB180302.map GEN ../../etc/charsets/GB180304.map GEN ../../etc/charsets/BIG5.map GEN ../../etc/charsets/BIG5-HKSCS.map GEN ../../etc/charsets/CNS-1.map GEN ../../etc/charsets/CNS-2.map GEN ../../etc/charsets/CNS-3.map GEN ../../etc/charsets/CNS-4.map GEN ../../etc/charsets/CNS-5.map GEN ../../etc/charsets/CNS-6.map GEN ../../etc/charsets/CNS-7.map GEN ../../etc/charsets/CNS-F.map GEN ../../etc/charsets/JISX0201.map GEN ../../etc/charsets/JISX0208.map GEN ../../etc/charsets/JISX0212.map GEN ../../etc/charsets/JISX2131.map GEN ../../etc/charsets/JISX2132.map GEN ../../etc/charsets/JISC6226.map GEN ../../etc/charsets/CP932-2BYTE.map GEN ../../etc/charsets/JISX213A.map GEN ../../etc/charsets/KSC5601.map GEN ../../etc/charsets/KSC5636.map GEN ../../etc/charsets/JOHAB.map GEN ../../etc/charsets/KOI-8.map GEN ../../etc/charsets/KOI8-R.map GEN ../../etc/charsets/KOI8-U.map GEN ../../etc/charsets/KOI8-T.map GEN ../../etc/charsets/ALTERNATIVNYJ.map GEN ../../etc/charsets/MIK.map GEN ../../etc/charsets/PTCP154.map GEN ../../etc/charsets/TIS-620.map GEN ../../etc/charsets/VISCII.map GEN ../../etc/charsets/VSCII.map GEN ../../etc/charsets/VSCII-2.map GEN ../../etc/charsets/KA-PS.map GEN ../../etc/charsets/KA-ACADEMY.map GEN ../../etc/charsets/HP-ROMAN8.map GEN ../../etc/charsets/NEXTSTEP.map GEN ../../etc/charsets/MACINTOSH.map GEN ../../etc/charsets/EBCDICUK.map GEN ../../etc/charsets/EBCDICUS.map GEN ../../etc/charsets/stdenc.map GEN ../../etc/charsets/symbol.map 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 ../../lisp/international/cp51932.el GEN ../../lisp/international/eucjp-ms.el GEN charsets.stamp /Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../admin/unidata charscript.el GEN ../../lisp/international/charscript.el CCLD temacs ld: warning: option -prebind is obsolete and being ignored /usr/local/bin/gmkdir -p ../etc /Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp update-subdirs unset EMACS_HEAP_EXEC; \ ./temacs --batch --load loadup bootstrap Loading loadup.el (source)... Using load-path (/Users/hiro/emacs-26/lisp /Users/hiro/emacs-26/lisp/emacs-lisp /Users/hiro/emacs-26/lisp/progmodes /Users/hiro/emacs-26/lisp/language /Users/hiro/emacs-26/lisp/international /Users/hiro/emacs-26/lisp/textmodes /Users/hiro/emacs-26/lisp/vc) Loading emacs-lisp/byte-run (source)... Loading emacs-lisp/backquote (source)... Loading subr (source)... Loading version (source)... Loading widget (source)... Loading custom (source)... Loading emacs-lisp/map-ynp (source)... Loading international/mule (source)... Loading international/mule-conf (source)... Loading env (source)... Loading format (source)... Loading bindings (source)... Loading window (source)... Loading /Users/hiro/emacs-26/lisp/files.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/macroexp.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/pcase.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/macroexp.el (source)... Loading /Users/hiro/emacs-26/lisp/cus-face.el (source)... Loading /Users/hiro/emacs-26/lisp/faces.el (source)... Loading /Users/hiro/emacs-26/lisp/button.el (source)... Loading /Users/hiro/emacs-26/lisp/ldefs-boot.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/nadvice.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/cl-preloaded.el (source)... Loading /Users/hiro/emacs-26/lisp/minibuffer.el (source)... Loading /Users/hiro/emacs-26/lisp/obarray.el (source)... Loading /Users/hiro/emacs-26/lisp/abbrev.el (source)... Loading /Users/hiro/emacs-26/lisp/simple.el (source)... Loading /Users/hiro/emacs-26/lisp/help.el (source)... Loading /Users/hiro/emacs-26/lisp/jka-cmpr-hook.el (source)... Loading /Users/hiro/emacs-26/lisp/epa-hook.el (source)... Loading /Users/hiro/emacs-26/lisp/international/mule-cmds.el (source)... Loading /Users/hiro/emacs-26/lisp/case-table.el (source)... Loading /Users/hiro/emacs-26/lisp/international/characters.el (source)... Loading /Users/hiro/emacs-26/lisp/composite.el (source)... Loading /Users/hiro/emacs-26/lisp/language/chinese.el (source)... Loading /Users/hiro/emacs-26/lisp/language/cyrillic.el (source)... Loading /Users/hiro/emacs-26/lisp/language/indian.el (source)... Loading /Users/hiro/emacs-26/lisp/language/sinhala.el (source)... Loading /Users/hiro/emacs-26/lisp/language/english.el (source)... Loading /Users/hiro/emacs-26/lisp/language/ethiopic.el (source)... Loading /Users/hiro/emacs-26/lisp/language/european.el (source)... Loading /Users/hiro/emacs-26/lisp/language/czech.el (source)... Loading /Users/hiro/emacs-26/lisp/language/slovak.el (source)... Loading /Users/hiro/emacs-26/lisp/language/romanian.el (source)... Loading /Users/hiro/emacs-26/lisp/language/greek.el (source)... Loading /Users/hiro/emacs-26/lisp/language/hebrew.el (source)... Loading /Users/hiro/emacs-26/lisp/international/cp51932.el (source)... Loading /Users/hiro/emacs-26/lisp/international/eucjp-ms.el (source)... Loading /Users/hiro/emacs-26/lisp/language/japanese.el (source)... Loading /Users/hiro/emacs-26/lisp/language/korean.el (source)... Loading /Users/hiro/emacs-26/lisp/language/lao.el (source)... Loading /Users/hiro/emacs-26/lisp/language/tai-viet.el (source)... Loading /Users/hiro/emacs-26/lisp/language/thai.el (source)... Loading /Users/hiro/emacs-26/lisp/language/tibetan.el (source)... Loading /Users/hiro/emacs-26/lisp/language/vietnamese.el (source)... Loading /Users/hiro/emacs-26/lisp/language/misc-lang.el (source)... Loading /Users/hiro/emacs-26/lisp/language/utf-8-lang.el (source)... Loading /Users/hiro/emacs-26/lisp/language/georgian.el (source)... Loading /Users/hiro/emacs-26/lisp/language/khmer.el (source)... Loading /Users/hiro/emacs-26/lisp/language/burmese.el (source)... Loading /Users/hiro/emacs-26/lisp/language/cham.el (source)... Loading /Users/hiro/emacs-26/lisp/indent.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/cl-generic.el (source)... Loading /Users/hiro/emacs-26/lisp/frame.el (source)... Loading /Users/hiro/emacs-26/lisp/startup.el (source)... Loading /Users/hiro/emacs-26/lisp/term/tty-colors.el (source)... Loading /Users/hiro/emacs-26/lisp/font-core.el (source)... Loading /Users/hiro/emacs-26/lisp/facemenu.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/syntax.el (source)... Loading /Users/hiro/emacs-26/lisp/font-lock.el (source)... Loading /Users/hiro/emacs-26/lisp/jit-lock.el (source)... Loading /Users/hiro/emacs-26/lisp/mouse.el (source)... Loading /Users/hiro/emacs-26/lisp/scroll-bar.el (source)... Loading /Users/hiro/emacs-26/lisp/select.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/timer.el (source)... Loading /Users/hiro/emacs-26/lisp/isearch.el (source)... Loading /Users/hiro/emacs-26/lisp/rfn-eshadow.el (source)... Loading /Users/hiro/emacs-26/lisp/menu-bar.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/lisp.el (source)... Loading /Users/hiro/emacs-26/lisp/textmodes/page.el (source)... Loading /Users/hiro/emacs-26/lisp/register.el (source)... Loading /Users/hiro/emacs-26/lisp/textmodes/paragraphs.el (source)... Loading /Users/hiro/emacs-26/lisp/progmodes/prog-mode.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/lisp-mode.el (source)... Loading /Users/hiro/emacs-26/lisp/progmodes/elisp-mode.el (source)... Loading /Users/hiro/emacs-26/lisp/textmodes/text-mode.el (source)... Loading /Users/hiro/emacs-26/lisp/textmodes/fill.el (source)... Loading /Users/hiro/emacs-26/lisp/newcomment.el (source)... Loading /Users/hiro/emacs-26/lisp/replace.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/tabulated-list.el (source)... Loading /Users/hiro/emacs-26/lisp/buff-menu.el (source)... Loading /Users/hiro/emacs-26/lisp/fringe.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/regexp-opt.el (source)... Loading /Users/hiro/emacs-26/lisp/image.el (source)... Loading /Users/hiro/emacs-26/lisp/international/fontset.el (source)... Loading /Users/hiro/emacs-26/lisp/dnd.el (source)... Loading /Users/hiro/emacs-26/lisp/tool-bar.el (source)... Loading /Users/hiro/emacs-26/lisp/term/common-win.el (source)... Loading /Users/hiro/emacs-26/lisp/mwheel.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/float-sup.el (source)... Loading /Users/hiro/emacs-26/lisp/vc/vc-hooks.el (source)... Loading /Users/hiro/emacs-26/lisp/vc/ediff-hook.el (source)... Loading /Users/hiro/emacs-26/lisp/uniquify.el (source)... Loading /Users/hiro/emacs-26/lisp/electric.el (source)... Loading /Users/hiro/emacs-26/lisp/emacs-lisp/eldoc.el (source)... Loading /Users/hiro/emacs-26/lisp/cus-start.el (source)... Loading /Users/hiro/emacs-26/lisp/tooltip.el (source)... Finding pointers to doc strings... Finding pointers to doc strings...done Dumping under the name emacs --- List of All Regions --- address size prot maxp --- List of Regions to be Dumped --- address size prot maxp --- Header Information --- Magic = 0xfeedfacf CPUType = 16777223 CPUSubType = 3 FileType = 0x2 NCmds = 28 SizeOfCmds = 3896 Flags = 0x00000085 Highest address of load commands in input file: 0x100738000 Lowest offset of all sections in __TEXT segment: 0x2370 --- List of Load Commands in Input File --- # cmd cmdsize name address size 0 LC_SEGMENT_64 72 __PAGEZERO 0 0x100000000 1 LC_SEGMENT_64 872 __TEXT 0x100000000 0x22c000 __text 0x100002370 0x1f2d03 __stubs 0x1001f5074 0xcae __stub_helper 0x1001f5d24 0x1532 __const 0x1001f7260 0x161f8 __cstring 0x10020d460 0x1772a __gcc_except_tab 0x100224b8c 0x4c __objc_methname 0x100224bd8 0x37e1 __objc_classname 0x1002283b9 0x113 __objc_methtype 0x1002284cc 0x16f4 __unwind_info 0x100229bc0 0x2434 2 LC_SEGMENT_64 1512 __DATA 0x10022c000 0x427000 __nl_symbol_ptr 0x10022c000 0x8 __got 0x10022c008 0x298 __la_symbol_ptr 0x10022c2a0 0x10e8 __const 0x10022d390 0x6018 __cfstring 0x1002333a8 0x880 __objc_classlist 0x100233c28 0x78 __objc_catlist 0x100233ca0 0x8 __objc_protolist 0x100233ca8 0x28 __objc_imageinfo 0x100233cd0 0x8 __objc_const 0x100233cd8 0x3c28 __objc_selrefs 0x100237900 0x1130 __objc_classrefs 0x100238a30 0x228 __objc_superrefs 0x100238c58 0x60 __objc_ivar 0x100238cb8 0x1f8 __objc_data 0x100238eb0 0x4b0 __data 0x100239360 0x36a6dc __bss 0x1005a3a40 0x8cef0 __common 0x100630930 0x21ef1 3 LC_SEGMENT_64 72 __LINKEDIT 0x100653000 0xe5000 4 LC_DYLD_INFO_ONLY 48 5 LC_SYMTAB 24 6 LC_DYSYMTAB 80 7 LC_LOAD_DYLINKER 32 8 LC_UUID 24 9 unknown 32 10 LC_SOURCE_VERSION 16 11 LC_MAIN 24 12 LC_LOAD_DYLIB 88 13 LC_LOAD_DYLIB 88 14 LC_LOAD_DYLIB 64 15 LC_LOAD_DYLIB 56 16 LC_LOAD_DYLIB 56 17 LC_LOAD_DYLIB 72 18 LC_LOAD_DYLIB 72 19 LC_LOAD_DYLIB 48 20 LC_LOAD_DYLIB 56 21 LC_LOAD_DYLIB 104 22 LC_LOAD_DYLIB 104 23 LC_LOAD_DYLIB 96 24 LC_LOAD_DYLIB 96 25 LC_LOAD_DYLIB 56 26 LC_FUNCTION_STARTS 16 27 LC_DATA_IN_CODE 16 0x101e00000 (sz: 0x3ffc/ 0x4024) 0x101e04080 (sz: 0x7aaaf/ 0xfbf80) 0x108400000 (sz: 0x4008/ 0x4024) 0x108404080 (sz: 0x25faf/ 0xfbf80) 0x109b00000 (sz: 0x3f97/ 0x4024) 0x109b04080 (sz: 0x1bf/ 0xfbf80) 0x108600000 (sz: 0x4024/ 0x4024) 0x108604080 (sz: 0x48fbd/ 0xfbf80) 0x101800000 (sz: 0x3fd8/ 0x4024) 0x101804080 (sz: 0x628cd/ 0xfbf80) 0x101d00000 (sz: 0x4024/ 0x4024) 0x101d04080 (sz: 0x5f8f8/ 0xfbf80) 0x109800000 (sz: 0x3f97/ 0x4024) 0x109804080 (sz: 0x27f/ 0xfbf80) 0x101f00000 (sz: 0x3f68/ 0x4024) 0x101f04080 (sz: 0x19ed/ 0xfbf80) 0x108500000 (sz: 0x3f73/ 0x4024) 0x108504080 (sz: 0x4af/ 0xfbf80) 0x101c00000 (sz: 0x4024/ 0x4024) 0x101c04080 (sz: 0xb580d/ 0xfbf80) 0x109c00000 (sz: 0x3fcb/ 0x4024) 0x109c04080 (sz: 0x34f/ 0xfbf80) 0x108700000 (sz: 0x3f24/ 0x4024) 0x108704080 (sz: 0x9df/ 0xfbf80) 0x10b800000 (sz: 0x4c/ 0x7fa6) 0x10b808200 (sz: 0x1ffb/0x7f7e00) 0x102000000 (sz: 0x1fbe/ 0x7fa6) 0x102008200 (sz: 0x1f91f8/0x7f7e00) 0x10b000000 (sz: 0x1f92/ 0x7fa6) 0x10b008200 (sz: 0x1f65fd/0x7f7e00) 0x10a800000 (sz: 0x176a/ 0x7fa6) 0x10a808200 (sz: 0x173dfd/0x7f7e00) 0x10a000000 (sz: 0x32/ 0x7fa6) 0x10a008200 (sz: 0x7fd/0x7f7e00) 0x109000000 (sz: 0x35de/ 0x7fa6) 0x109008200 (sz: 0x35b1fd/0x7f7e00) 0x108800000 (sz: 0x3502/ 0x7fa6) 0x108808200 (sz: 0x34d61c/0x7f7e00) 0x106000000 (sz: 0x5b5c/ 0x7fa6) 0x106008200 (sz: 0x5b2ffa/0x7f7e00) 0x128000000 (sz: 0x4024/ 0x4024) 0x128008000 (sz: 0x238005/0x7ff8000) 0x130000000 (sz: 0x4024/ 0x4024) 0x130008000 (sz: 0x10032a/0x7ff8000) 0x138000000 (sz: 0x4024/ 0x4024) 0x138008000 (sz: 0xec27a/0x7ff8000) 0x140000000 (sz: 0x4024/ 0x4024) 0x140008000 (sz: 0x9b872/0x7ff8000) 0x148000000 (sz: 0x4024/ 0x4024) 0x148008000 (sz: 0x40003/0x7ff8000) 0x150000000 (sz: 0x4024/ 0x4024) 0x150008000 (sz: 0x32a/0x7ff8000) 0x158000000 (sz: 0x4024/ 0x4024) 0x158008000 (sz: 0x32a/0x7ff8000) 0x160000000 (sz: 0x4024/ 0x4024) 0x160008000 (sz: 0x32a/0x7ff8000) 0x118000000 (sz: 0x4024/ 0x4024) 0x118008000 (sz: 0x70ba2/0x7ff8000) 0 (sz: 0/ 0) --- Load Commands written to Output File --- Writing segment __PAGEZERO @ 0 ( 0/0x100000000 @ 0) Writing segment __TEXT @ 0 (0x22c000/0x22c000 @ 0x100000000) Writing segment __DATA @ 0x22c000 (0x427000/0x427000 @ 0x10022c000) section __nl_symbol_ptr at 0x22c000 - 0x22c008 (sz: 0x8) section __got at 0x22c008 - 0x22c2a0 (sz: 0x298) section __la_symbol_ptr at 0x22c2a0 - 0x22d388 (sz: 0x10e8) section __const at 0x22d390 - 0x2333a8 (sz: 0x6018) section __cfstring at 0x2333a8 - 0x233c28 (sz: 0x880) section __objc_classlist at 0x233c28 - 0x233ca0 (sz: 0x78) section __objc_catlist at 0x233ca0 - 0x233ca8 (sz: 0x8) section __objc_protolist at 0x233ca8 - 0x233cd0 (sz: 0x28) section __objc_imageinfo at 0x233cd0 - 0x233cd8 (sz: 0x8) section __objc_const at 0x233cd8 - 0x237900 (sz: 0x3c28) section __objc_selrefs at 0x237900 - 0x238a30 (sz: 0x1130) section __objc_classrefs at 0x238a30 - 0x238c58 (sz: 0x228) section __objc_superrefs at 0x238c58 - 0x238cb8 (sz: 0x60) section __objc_ivar at 0x238cb8 - 0x238eb0 (sz: 0x1f8) section __objc_data at 0x238eb0 - 0x239360 (sz: 0x4b0) section __data at 0x239360 - 0x5a3a3c (sz: 0x36a6dc) section __bss at 0x5a3a40 - 0x630930 (sz: 0x8cef0) section __common at 0x630930 - 0x652821 (sz: 0x21ef1) Writing segment __DATA @ 0x653000 ( 0/ 0 @ 0) Writing segment __DATA @ 0x653000 ( 0x3fd8/ 0x4024 @ 0x101800000) Writing segment __DATA @ 0x657000 ( 0x6294d/ 0xfc000 @ 0x101804000) Writing segment __DATA @ 0x6ba000 ( 0x4024/ 0x4024 @ 0x101c00000) Writing segment __DATA @ 0x6bf000 ( 0xb588d/ 0xfc000 @ 0x101c04000) Writing segment __DATA @ 0x775000 ( 0x4024/ 0x4024 @ 0x101d00000) Writing segment __DATA @ 0x77a000 ( 0x5f978/ 0xfc000 @ 0x101d04000) Writing segment __DATA @ 0x7da000 ( 0x3ffc/ 0x4024 @ 0x101e00000) Writing segment __DATA @ 0x7de000 ( 0x7ab2f/ 0xfc000 @ 0x101e04000) Writing segment __DATA @ 0x859000 ( 0x3f68/ 0x4024 @ 0x101f00000) Writing segment __DATA @ 0x85d000 ( 0x1a6d/ 0xfc000 @ 0x101f04000) Writing segment __DATA @ 0x85f000 ( 0x1fbe/ 0x7fa6 @ 0x102000000) Writing segment __DATA @ 0x861000 (0x1f93f8/0x7f8000 @ 0x102008000) Writing segment __DATA @ 0xa5b000 ( 0x5b5c/ 0x7fa6 @ 0x106000000) Writing segment __DATA @ 0xa61000 (0x5b31fa/0x7f8000 @ 0x106008000) Writing segment __DATA @ 0x1015000 ( 0x4008/ 0x4024 @ 0x108400000) Writing segment __DATA @ 0x101a000 ( 0x2602f/ 0xfc000 @ 0x108404000) Writing segment __DATA @ 0x1041000 ( 0x3f73/ 0x4024 @ 0x108500000) Writing segment __DATA @ 0x1045000 ( 0x52f/ 0xfc000 @ 0x108504000) Writing segment __DATA @ 0x1046000 ( 0x4024/ 0x4024 @ 0x108600000) Writing segment __DATA @ 0x104b000 ( 0x4903d/ 0xfc000 @ 0x108604000) Writing segment __DATA @ 0x1095000 ( 0x3f24/ 0x4024 @ 0x108700000) Writing segment __DATA @ 0x1099000 ( 0xa5f/ 0xfc000 @ 0x108704000) Writing segment __DATA @ 0x109a000 ( 0x3502/ 0x7fa6 @ 0x108800000) Writing segment __DATA @ 0x109e000 (0x34d81c/0x7f8000 @ 0x108808000) Writing segment __DATA @ 0x13ec000 ( 0x35de/ 0x7fa6 @ 0x109000000) Writing segment __DATA @ 0x13f0000 (0x35b3fd/0x7f8000 @ 0x109008000) Writing segment __DATA @ 0x174c000 ( 0x3f97/ 0x4024 @ 0x109800000) Writing segment __DATA @ 0x1750000 ( 0x2ff/ 0xfc000 @ 0x109804000) Writing segment __DATA @ 0x1751000 ( 0x3f97/ 0x4024 @ 0x109b00000) Writing segment __DATA @ 0x1755000 ( 0x23f/ 0xfc000 @ 0x109b04000) Writing segment __DATA @ 0x1756000 ( 0x3fcb/ 0x4024 @ 0x109c00000) Writing segment __DATA @ 0x175a000 ( 0x3cf/ 0xfc000 @ 0x109c04000) Writing segment __DATA @ 0x175b000 ( 0x32/ 0x7fa6 @ 0x10a000000) Writing segment __DATA @ 0x175c000 ( 0x9fd/0x7f8000 @ 0x10a008000) Writing segment __DATA @ 0x175d000 ( 0x176a/ 0x7fa6 @ 0x10a800000) Writing segment __DATA @ 0x175f000 (0x173ffd/0x7f8000 @ 0x10a808000) Writing segment __DATA @ 0x18d3000 ( 0x1f92/ 0x7fa6 @ 0x10b000000) Writing segment __DATA @ 0x18d5000 (0x1f67fd/0x7f8000 @ 0x10b008000) Writing segment __DATA @ 0x1acc000 ( 0x4c/ 0x7fa6 @ 0x10b800000) Writing segment __DATA @ 0x1acd000 ( 0x21fb/0x7f8000 @ 0x10b808000) Writing segment __DATA @ 0x1ad0000 ( 0x4024/ 0x4024 @ 0x118000000) Writing segment __DATA @ 0x1ad5000 ( 0x70ba2/0x7ff8000 @ 0x118008000) Writing segment __DATA @ 0x1b46000 ( 0x4024/ 0x4024 @ 0x128000000) Writing segment __DATA @ 0x1b4b000 (0x238005/0x7ff8000 @ 0x128008000) Writing segment __DATA @ 0x1d84000 ( 0x4024/ 0x4024 @ 0x130000000) Writing segment __DATA @ 0x1d89000 (0x10032a/0x7ff8000 @ 0x130008000) Writing segment __DATA @ 0x1e8a000 ( 0x4024/ 0x4024 @ 0x138000000) Writing segment __DATA @ 0x1e8f000 ( 0xec27a/0x7ff8000 @ 0x138008000) Writing segment __DATA @ 0x1f7c000 ( 0x4024/ 0x4024 @ 0x140000000) Writing segment __DATA @ 0x1f81000 ( 0x9b872/0x7ff8000 @ 0x140008000) Writing segment __DATA @ 0x201d000 ( 0x4024/ 0x4024 @ 0x148000000) Writing segment __DATA @ 0x2022000 ( 0x40003/0x7ff8000 @ 0x148008000) Writing segment __DATA @ 0x2063000 ( 0x4024/ 0x4024 @ 0x150000000) Writing segment __DATA @ 0x2068000 ( 0x32a/0x7ff8000 @ 0x150008000) Writing segment __DATA @ 0x2069000 ( 0x4024/ 0x4024 @ 0x158000000) Writing segment __DATA @ 0x206e000 ( 0x32a/0x7ff8000 @ 0x158008000) Writing segment __DATA @ 0x206f000 ( 0x4024/ 0x4024 @ 0x160000000) Writing segment __DATA @ 0x2074000 ( 0x32a/0x7ff8000 @ 0x160008000) Writing segment __LINKEDIT @ 0x2075000 ( 0xe4918/ 0xe5000 @ 0x100653000) Writing LC_DYLD_INFO_ONLY command Writing LC_SYMTAB command Writing LC_DYSYMTAB command Writing LC_LOAD_DYLINKER command Writing LC_UUID command Writing unknown command Writing LC_SOURCE_VERSION command Writing LC_MAIN command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_LOAD_DYLIB command Writing LC_FUNCTION_STARTS command Writing LC_DATA_IN_CODE command 896 unused bytes follow Mach-O header 94391 pure bytes used mv -f emacs bootstrap-emacs /Applications/Xcode.app/Contents/Developer/usr/bin/make -C ../lisp compile-first EMACS="../src/bootstrap-emacs" ELC emacs-lisp/macroexp.elc /bin/sh: line 1: 20192 Killed: 9 EMACSLOADPATH= '../src/bootstrap-emacs' -batch --no-site-file --no-site-lisp --eval '(setq load-prefer-newer t)' -f batch-byte-compile emacs-lisp/macroexp.el make[3]: *** [emacs-lisp/macroexp.elc] Error 137 make[2]: *** [bootstrap-emacs] Error 2 make[1]: *** [src] Error 2 make: *** [bootstrap] Error 2 ```
hiroakit commented 4 years ago

I shared this issue with emacs-devel. https://lists.gnu.org/archive/html/emacs-devel/2020-04/msg01811.html

hiroakit commented 4 years ago

i got response from GNU Emacs.

So, closed.