unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#29180: 27.0.50; Bootstrapping on MINGW64 fails with "dumped_data_commit: memory exhausted"
@ 2017-11-06 21:27 John Mastro
  2017-11-07 19:42 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: John Mastro @ 2017-11-06 21:27 UTC (permalink / raw)
  To: 29180

[-- Attachment #1: Type: text/plain, Size: 840 bytes --]

Bootstrapping master (at commit 1d8f885) on MINGW64 fails for me with
the following error:

[...]
./temacs --batch  --load loadup bootstrap
Loading loadup.el (source)...
Using load-path [...]
Loading emacs-lisp/byte-run (source)...
[... a bunch more ...]
Loading c:/home/jbm/src/emacs/lisp/image.el (source)...
dumped_data_commit: memory exhausted.
Enlarge dumped_data[]!
make[2]: *** [Makefile:738: bootstrap-emacs.exe] Error 127
make[2]: Leaving directory '/c/home/jbm/src/emacs/src'
make[1]: *** [Makefile:416: src] Error 2
make[1]: Leaving directory '/c/home/jbm/src/emacs'
make: *** [Makefile:1098: bootstrap] Error 2

I've attached the full output of "make bootstrap", plus a patch bumping
the size of DUMPED_HEAP_SIZE. The patch allows the bootstrap to succeed,
but I'm not sure if any investigation is required first.

Thanks

John

[-- Attachment #2: bootstrap-memory-exhausted.txt --]
[-- Type: text/plain, Size: 49848 bytes --]

$ make bootstrap
make -C src bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/src'
rm -f temacs.exe core *.core \#* *.o
rm -f ../etc/DOC
rm -f bootstrap-emacs.exe emacs-27.0.50.exe
rm -f buildobj.h
rm -f globals.h gl-stamp
rm -f *.res *.tmp
rm -f emacs-*.*.*[0-9].exe emacs.exe 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
make[1]: Leaving directory '/c/home/jbm/src/emacs/src'
make -C oldXMenu bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/oldXMenu'
rm -f libXMenu11.a *.o deps/*
rm -f Makefile
rm -fr deps
make[1]: Leaving directory '/c/home/jbm/src/emacs/oldXMenu'
make -C lwlib bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/lwlib'
rm -f *.o liblw.a \#* deps/*
rm -f Makefile
rm -fr deps
rm -f TAGS
make[1]: Leaving directory '/c/home/jbm/src/emacs/lwlib'
make -C lib bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/lib'
rm -f *.[ao] *-t \#* deps/*
rm -f core *.stackdump alloca.h byteswap.h errno.h execinfo.h getopt.h getopt-cdefs.h limits.h stdalign.h stddef.h stdint.h string.h time.h
rm -f Makefile
rm -fr deps
make[1]: Leaving directory '/c/home/jbm/src/emacs/lib'
make -C lib-src bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/lib-src'
rm -f core *.o *.res
rm -f etags.exe ctags.exe emacsclient.exe emacsclientw.exe ebrowse.exe profile.exe hexl.exe  movemail.exe  make-docfile.exe
rm -f TAGS Makefile blessmail
make[1]: Leaving directory '/c/home/jbm/src/emacs/lib-src'
make -C nt bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/nt'
rm -f core *.o *.res
rm -f runemacs.exe addpm.exe cmdproxy.exe ddeclient.exe
rm -f TAGS Makefile *.rc
true
make[1]: Leaving directory '/c/home/jbm/src/emacs/nt'
make -C doc/emacs bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/doc/emacs'
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
make[1]: Leaving directory '/c/home/jbm/src/emacs/doc/emacs'
make -C doc/misc bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/doc/misc'
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
make[1]: Leaving directory '/c/home/jbm/src/emacs/doc/misc'
make -C doc/lispref bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/doc/lispref'
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]
make[1]: Leaving directory '/c/home/jbm/src/emacs/doc/lispref'
make -C doc/lispintro bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/doc/lispintro'
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]
make[1]: Leaving directory '/c/home/jbm/src/emacs/doc/lispintro'
make -C nextstep bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/nextstep'
rm -rf
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
make[1]: Leaving directory '/c/home/jbm/src/emacs/nextstep'
make -C leim bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/leim'
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
make[1]: Leaving directory '/c/home/jbm/src/emacs/leim'
make -C lisp bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/lisp'
find . -name '*.elc' -delete
rm -f ./calc/calc-loaddefs.el ./calendar/cal-loaddefs.el ./calendar/diary-loaddefs.el ./calendar/hol-loaddefs.el ./cedet/ede/loaddefs.el ./cedet/semantic/loaddefs.el ./cedet/srecode/loaddefs.el ./dired-loaddefs.el ./emacs-lisp/cl-loaddefs.el ./emacs-lisp/eieio-loaddefs.el ./htmlfontify-loaddefs.el ./ibuffer-loaddefs.el ./loaddefs.el ./mail/rmail-loaddefs.el ./mh-e/mh-loaddefs.el ./net/tramp-loaddefs.el ./org/org-loaddefs.el ./ps-print-loaddefs.el ./textmodes/reftex-loaddefs.el ./cus-load.el ./finder-inf.el ./subdirs.el ./eshell/esh-groups.el
make[1]: Leaving directory '/c/home/jbm/src/emacs/lisp'
for dir in admin/grammars admin/unidata admin/charsets; do \
  make -C $dir bootstrap-clean || exit; \
done
make[1]: Entering directory '/c/home/jbm/src/emacs/admin/grammars'
make[1]: Nothing to be done for 'bootstrap-clean'.
make[1]: Leaving directory '/c/home/jbm/src/emacs/admin/grammars'
make[1]: Entering directory '/c/home/jbm/src/emacs/admin/unidata'
rm -f ./*.elc unidata.txt
make[1]: Leaving directory '/c/home/jbm/src/emacs/admin/unidata'
make[1]: Entering directory '/c/home/jbm/src/emacs/admin/charsets'
rm -f jisx2131-filter
make[1]: Leaving directory '/c/home/jbm/src/emacs/admin/charsets'
[ ! -d test ] || make -C test bootstrap-clean
make[1]: Entering directory '/c/home/jbm/src/emacs/test'
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
make[1]: Leaving directory '/c/home/jbm/src/emacs/test'
[ ! -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 './autogen.sh git'.
make MAKEFILE_NAME=force-Makefile force-Makefile
make[1]: Entering directory '/c/home/jbm/src/emacs'
if [ -x ./config.status ]; then \
     ./config.status --recheck; \
else                            \
     ./configure --cache-file=/dev/null; \
fi
running CONFIG_SHELL=/bin/sh /bin/sh ./configure --prefix=/c/emacs/emacs-master --with-zlib --with-gnutls --with-xml2 --without-imagemagick --without-pop --without-compress-install CFLAGS=-ggdb3 -O0 PKG_CONFIG_PATH=/mingw64/lib/pkgconfig --no-create --no-recursion
configure: loading site script /mingw64/etc/config.site
checking for xcrun... no
checking for GNU Make... make
checking build system type... x86_64-w64-mingw32
checking host system type... x86_64-w64-mingw32
checking the compiler's target... x86_64-w64-mingw32
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
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 gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc and cc understand -c and -o together... yes
checking for putenv... yes
checking for sbrk... (cached) yes
checking for fchmod... no
checking for readlinkat... (cached) yes
checking for explicit_bzero... no
checking for faccessat... (cached) yes
checking for fcntl... (cached) yes
checking for fdopendir... (cached) not-needed
checking for fstatat... (cached) yes
checking for fsync... (cached) yes
checking for gettimeofday... yes
checking for nanotime... no
checking for lstat... (cached) yes
checking for mkostemp... no
checking for tzset... yes
checking for pipe2... (cached) yes
checking for pselect... (cached) yes
checking for readlink... (cached) yes
checking for strtoimax... yes
checking for symlink... (cached) yes
checking for localtime_r... no
checking for timegm... no
checking for futimes... no
checking for futimesat... no
checking for futimens... no
checking for utimensat... no
checking for lutimes... no
checking for getdtablesize... no
checking how to run the C preprocessor... gcc -I ./nt/inc -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 ar... ar
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... 64
checking whether the compiler is clang... no
checking whether C compiler handles -Werror -Wunknown-warning-option... no
checking whether -Wno-missing-field-initializers is supported... yes
checking whether -Wno-missing-field-initializers is needed... no
checking whether -Wuninitialized is supported... yes
checking max safe object size... 9223372036854775807
checking whether C compiler handles -fno-common... yes
checking whether C compiler handles -W... yes
checking whether C compiler handles -Wabi... yes
checking whether C compiler handles -Waddress... yes
checking whether C compiler handles -Waggressive-loop-optimizations... yes
checking whether C compiler handles -Wall... yes
checking whether C compiler handles -Wattributes... yes
checking whether C compiler handles -Wbool-compare... yes
checking whether C compiler handles -Wbool-operation... yes
checking whether C compiler handles -Wbuiltin-declaration-mismatch... yes
checking whether C compiler handles -Wbuiltin-macro-redefined... yes
checking whether C compiler handles -Wcast-align... yes
checking whether C compiler handles -Wchar-subscripts... yes
checking whether C compiler handles -Wchkp... yes
checking whether C compiler handles -Wclobbered... yes
checking whether C compiler handles -Wcomment... yes
checking whether C compiler handles -Wcomments... yes
checking whether C compiler handles -Wcoverage-mismatch... yes
checking whether C compiler handles -Wcpp... yes
checking whether C compiler handles -Wdangling-else... yes
checking whether C compiler handles -Wdate-time... yes
checking whether C compiler handles -Wdeprecated... yes
checking whether C compiler handles -Wdeprecated-declarations... yes
checking whether C compiler handles -Wdesignated-init... yes
checking whether C compiler handles -Wdisabled-optimization... yes
checking whether C compiler handles -Wdiscarded-array-qualifiers... yes
checking whether C compiler handles -Wdiscarded-qualifiers... yes
checking whether C compiler handles -Wdiv-by-zero... yes
checking whether C compiler handles -Wdouble-promotion... yes
checking whether C compiler handles -Wduplicated-cond... yes
checking whether C compiler handles -Wduplicate-decl-specifier... yes
checking whether C compiler handles -Wempty-body... yes
checking whether C compiler handles -Wendif-labels... yes
checking whether C compiler handles -Wenum-compare... yes
checking whether C compiler handles -Wexpansion-to-defined... yes
checking whether C compiler handles -Wextra... yes
checking whether C compiler handles -Wformat-contains-nul... yes
checking whether C compiler handles -Wformat-extra-args... yes
checking whether C compiler handles -Wformat-security... yes
checking whether C compiler handles -Wformat-signedness... yes
checking whether C compiler handles -Wformat-y2k... yes
checking whether C compiler handles -Wformat-zero-length... yes
checking whether C compiler handles -Wframe-address... yes
checking whether C compiler handles -Wfree-nonheap-object... yes
checking whether C compiler handles -Whsa... yes
checking whether C compiler handles -Wignored-attributes... yes
checking whether C compiler handles -Wignored-qualifiers... yes
checking whether C compiler handles -Wimplicit... yes
checking whether C compiler handles -Wimplicit-function-declaration... yes
checking whether C compiler handles -Wimplicit-int... yes
checking whether C compiler handles -Wincompatible-pointer-types... yes
checking whether C compiler handles -Winit-self... yes
checking whether C compiler handles -Wint-conversion... yes
checking whether C compiler handles -Wint-in-bool-context... yes
checking whether C compiler handles -Wint-to-pointer-cast... yes
checking whether C compiler handles -Winvalid-memory-model... yes
checking whether C compiler handles -Winvalid-pch... yes
checking whether C compiler handles -Wjump-misses-init... yes
checking whether C compiler handles -Wlogical-not-parentheses... yes
checking whether C compiler handles -Wlogical-op... yes
checking whether C compiler handles -Wmain... yes
checking whether C compiler handles -Wmaybe-uninitialized... yes
checking whether C compiler handles -Wmemset-elt-size... yes
checking whether C compiler handles -Wmemset-transposed-args... yes
checking whether C compiler handles -Wmisleading-indentation... yes
checking whether C compiler handles -Wmissing-braces... yes
checking whether C compiler handles -Wmissing-declarations... yes
checking whether C compiler handles -Wmissing-include-dirs... yes
checking whether C compiler handles -Wmissing-parameter-type... yes
checking whether C compiler handles -Wmissing-prototypes... yes
checking whether C compiler handles -Wmultichar... yes
checking whether C compiler handles -Wnarrowing... yes
checking whether C compiler handles -Wnested-externs... yes
checking whether C compiler handles -Wnonnull... yes
checking whether C compiler handles -Wnonnull-compare... yes
checking whether C compiler handles -Wnull-dereference... yes
checking whether C compiler handles -Wodr... yes
checking whether C compiler handles -Wold-style-declaration... yes
checking whether C compiler handles -Wold-style-definition... yes
checking whether C compiler handles -Wopenmp-simd... yes
checking whether C compiler handles -Woverflow... yes
checking whether C compiler handles -Wpacked... yes
checking whether C compiler handles -Wpacked-bitfield-compat... yes
checking whether C compiler handles -Wparentheses... yes
checking whether C compiler handles -Wpointer-arith... yes
checking whether C compiler handles -Wpointer-compare... yes
checking whether C compiler handles -Wpointer-to-int-cast... yes
checking whether C compiler handles -Wpragmas... yes
checking whether C compiler handles -Wpsabi... yes
checking whether C compiler handles -Wrestrict... yes
checking whether C compiler handles -Wreturn-local-addr... yes
checking whether C compiler handles -Wreturn-type... yes
checking whether C compiler handles -Wscalar-storage-order... yes
checking whether C compiler handles -Wsequence-point... yes
checking whether C compiler handles -Wshift-count-negative... yes
checking whether C compiler handles -Wshift-count-overflow... yes
checking whether C compiler handles -Wshift-negative-value... yes
checking whether C compiler handles -Wsizeof-array-argument... yes
checking whether C compiler handles -Wsizeof-pointer-memaccess... yes
checking whether C compiler handles -Wstrict-aliasing... yes
checking whether C compiler handles -Wstrict-prototypes... yes
checking whether C compiler handles -Wsuggest-attribute=noreturn... yes
checking whether C compiler handles -Wsuggest-final-methods... yes
checking whether C compiler handles -Wsuggest-final-types... yes
checking whether C compiler handles -Wswitch-bool... yes
checking whether C compiler handles -Wswitch-unreachable... yes
checking whether C compiler handles -Wtautological-compare... yes
checking whether C compiler handles -Wtrampolines... yes
checking whether C compiler handles -Wtrigraphs... yes
checking whether C compiler handles -Wuninitialized... yes
checking whether C compiler handles -Wunknown-pragmas... yes
checking whether C compiler handles -Wunused... yes
checking whether C compiler handles -Wunused-but-set-parameter... yes
checking whether C compiler handles -Wunused-but-set-variable... yes
checking whether C compiler handles -Wunused-function... yes
checking whether C compiler handles -Wunused-label... yes
checking whether C compiler handles -Wunused-local-typedefs... yes
checking whether C compiler handles -Wunused-macros... yes
checking whether C compiler handles -Wunused-result... yes
checking whether C compiler handles -Wunused-value... yes
checking whether C compiler handles -Wunused-variable... yes
checking whether C compiler handles -Wvarargs... yes
checking whether C compiler handles -Wvariadic-macros... yes
checking whether C compiler handles -Wvector-operation-performance... yes
checking whether C compiler handles -Wvolatile-register-var... yes
checking whether C compiler handles -Wwrite-strings... yes
checking whether C compiler handles -Walloc-size-larger-than=9223372036854775807... yes
checking whether C compiler handles -Warray-bounds=2... yes
checking whether C compiler handles -Wformat-truncation=2... yes
checking whether C compiler handles -Wimplicit-fallthrough=5... yes
checking whether C compiler handles -Wnormalized=nfc... yes
checking whether C compiler handles -Wshift-overflow=2... yes
checking whether C compiler handles -Wstringop-overflow=2... yes
checking whether C compiler handles -Wvla-larger-than=4031... yes
checking whether C compiler handles -Wredundant-decls... (cached) no
checking whether C compiler handles -Wno-missing-field-initializers... yes
checking whether C compiler handles -Wno-override-init... yes
checking whether C compiler handles -Wno-sign-compare... yes
checking whether C compiler handles -Wno-type-limits... yes
checking whether C compiler handles -Wno-unused-parameter... yes
checking whether C compiler handles -Wno-format-nonliteral... yes
checking whether C compiler handles -Wno-pointer-sign... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking command to symlink files in the same directory... /bin/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... /mingw64/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... yes
checking for _oss_ioctl in -lossaudio... no
checking for ALSA... no
checking for linux/fs.h... no
checking for malloc.h... yes
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... no
checking for pwd.h... yes
checking for utmp.h... no
checking for util.h... no
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... (cached) no
checking for malloc/malloc.h... no
checking for sys/un.h... no
checking for dirent.h... yes
checking for execinfo.h... no
checking for stdio_ext.h... no
checking for sys/vfs.h... no
checking for sys/fs_types.h... no
checking for getopt.h... (cached) no
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... no
checking for sys/stat.h... (cached) yes
checking for ADDR_NO_RANDOMIZE... no
checking for term.h... no
checking whether time.h and sys/time.h may both be included... yes
checking whether sys_siglist is declared... no
checking whether __sys_siglist is declared... no
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for net/if.h... no
checking for ifaddrs.h... no
checking for net/if_dl.h... no
checking for struct ifreq.ifr_flags... no
checking for struct ifreq.ifr_hwaddr... no
checking for struct ifreq.ifr_netmask... no
checking for struct ifreq.ifr_broadaddr... no
checking for struct ifreq.ifr_addr... no
checking for struct ifreq.ifr_addr.sa_len... no
checking whether gcc understands -MMD -MF... yes
checking for X... no
checking whether Windows API headers are recent enough... yes
checking for windres... windres
checking whether malloc is Doug Lea style... no
checking for getpagesize... yes
checking for working mmap... no
checking for main in -lXbsd... no
checking for thread support... yes
checking for RSVG... yes
checking for getaddrinfo_a in -lanl... no
checking for DBUS... no
checking for lgetfilecon in -lselinux... no
checking for LIBGNUTLS... yes
checking for LIBSYSTEMD... no
checking windows.h usability... yes
checking windows.h presence... yes
checking for windows.h... yes
checking for X11/xpm.h... yes
checking for jpeglib 6b or later... -ljpeg
checking for library containing cmsCreateTransform... no
checking for library containing inflateEnd... -lz
checking png.h usability... yes
checking png.h presence... yes
checking for png.h... yes
checking whether png_longjmp is declared... yes
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking gif_lib.h usability... yes
checking gif_lib.h presence... yes
checking for gif_lib.h... yes
checking gpm.h usability... no
checking gpm.h presence... no
checking for gpm.h... no
checking for LIBXML2... 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... no
checking for gethostname... (cached) yes
checking for getrusage... no
checking for get_current_dir_name... no
checking for lrand48... no
checking for random... (cached) yes
checking for rint... yes
checking for trunc... yes
checking for select... (cached) yes
checking for getpagesize... (cached) yes
checking for setlocale... yes
checking for newlocale... no
checking for getrlimit... (cached) yes
checking for setrlimit... (cached) yes
checking for shutdown... (cached) yes
checking for pthread_sigmask... (cached) yes
checking for strsignal... no
checking for setitimer... (cached) yes
checking for sendto... (cached) yes
checking for recvfrom... (cached) yes
checking for getsockname... (cached) yes
checking for getifaddrs... no
checking for freeifaddrs... no
checking for gai_strerror... (cached) yes
checking for sync... no
checking for getpwent... no
checking for endpwent... no
checking for getgrent... no
checking for endgrent... no
checking for cfmakeraw... no
checking for cfsetspeed... no
checking for __executable_start... no
checking for log2... yes
checking for prctl... no
checking for aligned_alloc... no
checking for posix_memalign... no
checking whether aligned_alloc is declared... no
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... no
checking for getpt... no
checking for posix_openpt... no
checking for library containing tputs... none required
checking for timerfd interface... no
checking whether signals can be handled on alternate stack... no
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... (cached) 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... no
checking for vfork... no
checking for snprintf... yes
checking whether GLib is linked in... no
checking for nl_langinfo and CODESET... (cached) yes
checking for mbstate_t... yes
checking for _setjmp... no
checking for sigsetjmp... no
checking for usable FIONREAD... yes
checking for usable SIGIO... no
checking for struct alignment... yes
checking for working alloca.h... no
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... yes
checking for complete errno.h... no
checking for EMULTIHOP value... no
checking for ENOLINK value... yes
checking for EOVERFLOW value... yes
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... no
checking whether lstat correctly handles trailing slash... (cached) yes
checking for gawk... gawk
checking for getopt.h... (cached) no
checking for C/C++ restrict keyword... __restrict
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... (cached) yes
checking whether limits.h has ULLONG_WIDTH etc.... yes
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 for 64-bit off_t... yes
checking for 64-bit st_size... no
checking whether memrchr is declared... no
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... no
checking whether time_t is signed... yes
checking whether alarm is declared... (cached) yes
checking for working mktime... (cached) yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... no
checking whether tzname is declared... yes
checking for tzname... yes
checking for struct tm.tm_gmtoff... no
checking whether <sys/select.h> is self-contained... no
checking for sigset_t... no
checking for wchar_t... yes
checking whether strtoimax is declared... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking whether clearerr_unlocked is declared... no
checking whether feof_unlocked is declared... no
checking whether ferror_unlocked is declared... no
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... no
checking whether getchar_unlocked is declared... no
checking whether putc_unlocked is declared... no
checking whether putchar_unlocked is declared... no
checking whether the utimes function works... no
checking type of array argument to getgroups... int
checking whether getdtablesize is declared... no
checking for O_CLOEXEC... no
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... (cached) none required
checking for acl_get_file... (cached) yes
checking for acl_get_fd... no
checking for acl_set_file... (cached) yes
checking for acl_set_fd... no
checking for acl_free... (cached) yes
checking for acl_from_mode... no
checking for acl_from_text... (cached) yes
checking for acl_delete_def_file... no
checking for acl_extended_file... no
checking for acl_delete_fd_np... no
checking for acl_delete_file_np... no
checking for acl_copy_ext_native... no
checking for acl_create_entry_np... no
checking for acl_to_short_text... no
checking for acl_free_text... no
checking for working acl_get_file... (cached) 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... no
checking for ACL_TYPE_EXTENDED... no
checking byteswap.h usability... no
checking byteswap.h presence... no
checking for byteswap.h... no
checking for library containing clock_gettime... (cached) none required
checking for clock_gettime... (cached) no
checking for clock_settime... (cached) no
checking for d_type member in directory struct... no
checking whether dup2 works... (cached) yes
checking for explicit_memset... no
checking whether fcntl handles F_DUPFD correctly... (cached) yes
checking whether fcntl understands F_DUPFD_CLOEXEC... (cached) yes
checking for fdatasync... (cached) yes
checking whether fdopendir is declared... no
checking whether fdopendir works... (cached) no-but-not-needed-so-yes
checking for flexible array member... yes
checking for __fpending... no
checking whether fstatat (..., 0) works... (cached) yes
checking for sys/mount.h... no
checking how to get file system space usage... checking for statvfs function (SVR4)... no
checking for two-argument statfs with statfs.f_frsize member... no
checking for 3-argument statfs function (DEC OSF/1)... no
checking for two-argument statfs with statfs.f_bsize member (AIX, 4.3BSD)... no
checking for four-argument statfs (AIX-3.2.5, SVR3)... no
checking for two-argument statfs with statfs.f_fsize member (4.4BSD and NetBSD)... no
checking for two-argument statfs with struct fs_data (Ultrix)... no
checking for getloadavg... (cached) yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking whether getloadavg is declared... no
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... (cached) yes
checking whether pselect detects invalid fds... (cached) yes
checking whether pthread_sigmask works without -lpthread... yes
checking whether pthread_sigmask returns error numbers... (cached) yes
checking whether pthread_sigmask unblocks signals correctly... (cached) not relevant
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... (cached) yes
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... no
checking for struct stat.st_atimensec... no
checking for struct stat.st_atim.st__tim.tv_nsec... no
checking for struct stat.st_birthtimespec.tv_nsec... no
checking for struct stat.st_birthtimensec... no
checking for struct stat.st_birthtim.tv_nsec... no
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... gnu
checking for stpcpy... no
checking whether strtoimax works... yes
checking whether symlink handles trailing slash correctly... (cached) yes
checking for nlink_t... no
checking whether localtime_r is declared... no
checking for timezone_t... no
checking for library containing timer_settime... no
checking for timer_settime... no
checking for variable-length arrays... yes
checking for __mktime_internal... no
checking for gcc  option to disable position independent executables... -no-pie

Configured for 'x86_64-w64-mingw32'.

  Where should the build process find the source code?    .
  What compiler should emacs be built with?               gcc  -ggdb3 -O0
  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?         yes
  What window system should Emacs use?                    w32
  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?                                   yes
  Does Emacs use -ljpeg?                                  yes
  Does Emacs use -ltiff?                                  yes
  Does Emacs use a gif library?                           yes
  Does Emacs use a png library?                           yes
  Does Emacs use -lrsvg-2?                                yes
  Does Emacs use cairo?                                   no
  Does Emacs use -llcms2?                                 no
  Does Emacs use imagemagick (version 6)?                 no
  Does Emacs support sound?                               yes
  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 (w32)
  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?                no
  Does Emacs use toolkit scroll bars?                     yes
  Does Emacs support Xwidgets (requires gtk3)?            no
  Does Emacs have threading support in lisp?              yes


configure: creating ./config.status
MAKE='make' ./config.status
config.status: creating nt/emacs.rc
config.status: creating nt/emacsclient.rc
config.status: creating src/emacs-module.h
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
make[2]: Entering directory '/c/home/jbm/src/emacs'
make[2]: Leaving directory '/c/home/jbm/src/emacs'
config.status: executing src/.gdbinit commands
config.status: executing doc/emacs/emacsver.texi commands
config.status: executing etc-refcards-emacsver.tex commands
make[2]: Entering directory '/c/home/jbm/src/emacs'
make[2]: Leaving directory '/c/home/jbm/src/emacs'
make[1]: Leaving directory '/c/home/jbm/src/emacs'
make all
make[1]: Entering directory '/c/home/jbm/src/emacs'
make -C nt all
make[2]: Entering directory '/c/home/jbm/src/emacs/nt'
  RC       emacs.res
  CCLD     runemacs.exe
  CCLD     addpm.exe
  CCLD     cmdproxy.exe
  CCLD     ddeclient.exe
make[2]: Leaving directory '/c/home/jbm/src/emacs/nt'
make -C lib all
make[2]: Entering directory '/c/home/jbm/src/emacs/lib'
  GEN      alloca.h
  GEN      byteswap.h
  GEN      errno.h
  GEN      execinfo.h
  GEN      getopt.h
  GEN      getopt-cdefs.h
  GEN      limits.h
  GEN      stdint.h
  GEN      string.h
  GEN      time.h
  CC       acl_entries.o
  CC       execinfo.o
  CC       explicit_bzero.o
  CC       fpending.o
  CC       getopt.o
  CC       getopt1.o
  CC       gettimeofday.o
  CC       memrchr.o
  CC       mkostemp.o
  CC       mktime.o
  CC       sig2str.o
  CC       stpcpy.o
  CC       time_r.o
  CC       time_rz.o
  CC       timegm.o
  CC       binary-io.o
  CC       c-ctype.o
  CC       c-strcasecmp.o
  CC       c-strncasecmp.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       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       utimens.o
  AR       libgnu.a
make[2]: Leaving directory '/c/home/jbm/src/emacs/lib'
make -C lib-src all
make[2]: Entering directory '/c/home/jbm/src/emacs/lib-src'
  CC       regex.o
  CC       ntlib.o
  CCLD     etags.exe
  CCLD     ctags.exe
  CCLD     emacsclient.exe
  RC       emacsclient.res
  CCLD     emacsclientw.exe
  CCLD     ebrowse.exe
  CCLD     profile.exe
  CCLD     hexl.exe
  CC       pop.o
  CCLD     movemail.exe
  CCLD     make-docfile.exe
make[2]: Leaving directory '/c/home/jbm/src/emacs/lib-src'
make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' all
make[2]: Entering directory '/c/home/jbm/src/emacs/src'
  GEN      globals.h
  CC       firstfile.o
  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       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       syntax.o
  CC       unexw32.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       w32notify.o
  CC       profiler.o
  CC       decompress.o
  CC       thread.o
  CC       systhread.o
  CC       w32fns.o
  CC       w32menu.o
  CC       w32reg.o
  CC       w32font.o
  CC       w32term.o
  CC       w32xfns.o
  CC       w32select.o
  CC       w32uniscribe.o
  CC       w32.o
  CC       w32console.o
  CC       w32heap.o
  CC       w32inevt.o
  CC       w32proc.o
  CC       fontset.o
  CC       fringe.o
  CC       image.o
  CC       tparam.o
  CC       lastfile.o
make -C ../nt ../src/emacs.res
make[3]: Entering directory '/c/home/jbm/src/emacs/nt'
  RC       ../src/emacs.res
make[3]: Leaving directory '/c/home/jbm/src/emacs/nt'
make -C ../admin/charsets all
make[3]: Entering directory '/c/home/jbm/src/emacs/admin/charsets'
  GEN      ../../etc/charsets/JISX2131.map
  GEN      charsets.stamp
make[3]: Leaving directory '/c/home/jbm/src/emacs/admin/charsets'
make -C ../admin/unidata charscript.el
make[3]: Entering directory '/c/home/jbm/src/emacs/admin/unidata'
make[3]: Nothing to be done for 'charscript.el'.
make[3]: Leaving directory '/c/home/jbm/src/emacs/admin/unidata'
  CCLD     temacs.exe
/usr/bin/mkdir -p ../etc
make -C ../lisp update-subdirs
make[3]: Entering directory '/c/home/jbm/src/emacs/lisp'
make[3]: Leaving directory '/c/home/jbm/src/emacs/lisp'
./temacs --batch  --load loadup bootstrap
Loading loadup.el (source)...
Using load-path (c:/home/jbm/src/emacs/lisp c:/home/jbm/src/emacs/lisp/emacs-lisp c:/home/jbm/src/emacs/lisp/progmodes c:/home/jbm/src/emacs/lisp/language c:/home/jbm/src/emacs/lisp/international c:/home/jbm/src/emacs/lisp/textmodes c:/home/jbm/src/emacs/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 c:/home/jbm/src/emacs/lisp/files.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/macroexp.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/pcase.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/macroexp.el (source)...
Loading c:/home/jbm/src/emacs/lisp/cus-face.el (source)...
Loading c:/home/jbm/src/emacs/lisp/faces.el (source)...
Loading c:/home/jbm/src/emacs/lisp/button.el (source)...
Loading c:/home/jbm/src/emacs/lisp/ldefs-boot.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/nadvice.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/cl-preloaded.el (source)...
Loading c:/home/jbm/src/emacs/lisp/minibuffer.el (source)...
Loading c:/home/jbm/src/emacs/lisp/obarray.el (source)...
Loading c:/home/jbm/src/emacs/lisp/abbrev.el (source)...
Loading c:/home/jbm/src/emacs/lisp/simple.el (source)...
Loading c:/home/jbm/src/emacs/lisp/help.el (source)...
Loading c:/home/jbm/src/emacs/lisp/jka-cmpr-hook.el (source)...
Loading c:/home/jbm/src/emacs/lisp/epa-hook.el (source)...
Loading c:/home/jbm/src/emacs/lisp/international/mule-cmds.el (source)...
Loading c:/home/jbm/src/emacs/lisp/case-table.el (source)...
Loading c:/home/jbm/src/emacs/lisp/international/charprop.el (source)...
Loading c:/home/jbm/src/emacs/lisp/international/characters.el (source)...
Loading c:/home/jbm/src/emacs/lisp/composite.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/chinese.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/cyrillic.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/indian.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/sinhala.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/english.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/ethiopic.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/european.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/czech.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/slovak.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/romanian.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/greek.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/hebrew.el (source)...
Loading c:/home/jbm/src/emacs/lisp/international/cp51932.el (source)...
Loading c:/home/jbm/src/emacs/lisp/international/eucjp-ms.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/japanese.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/korean.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/lao.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/tai-viet.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/thai.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/tibetan.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/vietnamese.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/misc-lang.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/utf-8-lang.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/georgian.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/khmer.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/burmese.el (source)...
Loading c:/home/jbm/src/emacs/lisp/language/cham.el (source)...
Loading c:/home/jbm/src/emacs/lisp/indent.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/cl-generic.el (source)...
Loading c:/home/jbm/src/emacs/lisp/frame.el (source)...
Loading c:/home/jbm/src/emacs/lisp/startup.el (source)...
Loading c:/home/jbm/src/emacs/lisp/term/tty-colors.el (source)...
Loading c:/home/jbm/src/emacs/lisp/font-core.el (source)...
Loading c:/home/jbm/src/emacs/lisp/facemenu.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/syntax.el (source)...
Loading c:/home/jbm/src/emacs/lisp/font-lock.el (source)...
Loading c:/home/jbm/src/emacs/lisp/jit-lock.el (source)...
Loading c:/home/jbm/src/emacs/lisp/mouse.el (source)...
Loading c:/home/jbm/src/emacs/lisp/scroll-bar.el (source)...
Loading c:/home/jbm/src/emacs/lisp/select.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/timer.el (source)...
Loading c:/home/jbm/src/emacs/lisp/isearch.el (source)...
Loading c:/home/jbm/src/emacs/lisp/rfn-eshadow.el (source)...
Loading c:/home/jbm/src/emacs/lisp/menu-bar.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/lisp.el (source)...
Loading c:/home/jbm/src/emacs/lisp/textmodes/page.el (source)...
Loading c:/home/jbm/src/emacs/lisp/register.el (source)...
Loading c:/home/jbm/src/emacs/lisp/textmodes/paragraphs.el (source)...
Loading c:/home/jbm/src/emacs/lisp/progmodes/prog-mode.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/lisp-mode.el (source)...
Loading c:/home/jbm/src/emacs/lisp/progmodes/elisp-mode.el (source)...
Loading c:/home/jbm/src/emacs/lisp/textmodes/text-mode.el (source)...
Loading c:/home/jbm/src/emacs/lisp/textmodes/fill.el (source)...
Loading c:/home/jbm/src/emacs/lisp/newcomment.el (source)...
Loading c:/home/jbm/src/emacs/lisp/replace.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/tabulated-list.el (source)...
Loading c:/home/jbm/src/emacs/lisp/buff-menu.el (source)...
Loading c:/home/jbm/src/emacs/lisp/fringe.el (source)...
Loading c:/home/jbm/src/emacs/lisp/emacs-lisp/regexp-opt.el (source)...
Loading c:/home/jbm/src/emacs/lisp/image.el (source)...
dumped_data_commit: memory exhausted.
Enlarge dumped_data[]!
make[2]: *** [Makefile:738: bootstrap-emacs.exe] Error 127
make[2]: Leaving directory '/c/home/jbm/src/emacs/src'
make[1]: *** [Makefile:416: src] Error 2
make[1]: Leaving directory '/c/home/jbm/src/emacs'
make: *** [Makefile:1098: bootstrap] Error 2

[-- Attachment #3: 0001-Bump-up-DUMPED_HEAP_SIZE-in-w32heap.c.patch --]
[-- Type: application/octet-stream, Size: 892 bytes --]

From ad9180af149716ef54db58ee522fb3ec15cc0acf Mon Sep 17 00:00:00 2001
From: John Mastro <john.b.mastro@gmail.com>
Date: Mon, 6 Nov 2017 13:16:20 -0800
Subject: [PATCH] Bump up DUMPED_HEAP_SIZE in w32heap.c

* src/w32heap.c (DUMPED_HEAP_SIZE): Bump up DUMPED_HEAP_SIZE
to 22*1024*1024 for 64-bit and wide-integer builds.
---
 src/w32heap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/w32heap.c b/src/w32heap.c
index 85ed050d99..4115049d71 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -116,7 +116,7 @@ typedef struct _RTL_HEAP_PARAMETERS {
    to build only the first bootstrap-emacs.exe with the large size,
    and reset that to a lower value afterwards.  */
 #if defined _WIN64 || defined WIDE_EMACS_INT
-# define DUMPED_HEAP_SIZE (21*1024*1024)
+# define DUMPED_HEAP_SIZE (22*1024*1024)
 #else
 # define DUMPED_HEAP_SIZE (13*1024*1024)
 #endif
-- 
2.14.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#29180: 27.0.50; Bootstrapping on MINGW64 fails with "dumped_data_commit: memory exhausted"
  2017-11-06 21:27 bug#29180: 27.0.50; Bootstrapping on MINGW64 fails with "dumped_data_commit: memory exhausted" John Mastro
@ 2017-11-07 19:42 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2017-11-07 19:42 UTC (permalink / raw)
  To: John Mastro; +Cc: 29180-done

> From: John Mastro <john.b.mastro@gmail.com>
> Date: Mon, 6 Nov 2017 13:27:40 -0800
> 
> Bootstrapping master (at commit 1d8f885) on MINGW64 fails for me with
> the following error:
> 
> [...]
> ./temacs --batch  --load loadup bootstrap
> Loading loadup.el (source)...
> Using load-path [...]
> Loading emacs-lisp/byte-run (source)...
> [... a bunch more ...]
> Loading c:/home/jbm/src/emacs/lisp/image.el (source)...
> dumped_data_commit: memory exhausted.
> Enlarge dumped_data[]!
> make[2]: *** [Makefile:738: bootstrap-emacs.exe] Error 127
> make[2]: Leaving directory '/c/home/jbm/src/emacs/src'
> make[1]: *** [Makefile:416: src] Error 2
> make[1]: Leaving directory '/c/home/jbm/src/emacs'
> make: *** [Makefile:1098: bootstrap] Error 2
> 
> I've attached the full output of "make bootstrap", plus a patch bumping
> the size of DUMPED_HEAP_SIZE. The patch allows the bootstrap to succeed,
> but I'm not sure if any investigation is required first.

Thanks, I pushed your change.  It's TRT to do in these cases.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-11-07 19:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-06 21:27 bug#29180: 27.0.50; Bootstrapping on MINGW64 fails with "dumped_data_commit: memory exhausted" John Mastro
2017-11-07 19:42 ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).