all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Trying to build from cvs
@ 2004-02-05 16:20 Ware, John
  0 siblings, 0 replies; 2+ messages in thread
From: Ware, John @ 2004-02-05 16:20 UTC (permalink / raw)


Hi all,
	I'm trying to build emacs from cvs and need some help with some errors. :-) 
	Running cygwin on win2k
	Here are the commands issued so far
	
./configure --with-jpeg --with-gif --with-tiff --with-xpm --with-x-toolkit=no

make bootstrap
(cd src;      make - --unix mostlyclean)
make[1]: Entering directory `/c/project/emacs/emacs/src'
rm -f temacs.exe prefix-args.exe core *.core \#* *.o libXMenu11.a liblw.a
rm -f ../etc/DOC
rm -f bootstrap-emacs.exe
...
 lots of compiling going on her just fine
... then
gcc -Wl,--image-base,0x20000000   -L/usr/X11R6/lib -o temacs ecrt0.o dispnew.o frame.o 
scroll.o xdisp.o xmenu.o window.o charset.o coding.o category.o ccl.o cm.o term.o 
xfaces.o xterm.o xfns.o xselect.o xrdb.o fontset.o xsmfns.o emacs.o keyboard.o macros.o 
keymap.o sysdep.o buffer.o filelock.o insdel.o marker.o minibuf.o fileio.o dired.o 
filemode.o cmds.o casetab.o casefiddle.o indent.o search.o regex.o undo.o alloc.o 
data.o doc.o editfns.o callint.o eval.o floatfns.o fns.o print.o lread.o abbrev.o 
syntax.o unexec.o bytecode.o process.o callproc.o region-cache.o sound.o atimer.o doprnt.o 
strftime.o intervals.o textprop.o composite.o md5.o   terminfo.o lastfile.o gmalloc.o 
ralloc.o vm-limit.o   mktime.o getloadavg.o   ../oldXMenu/libXMenu11.a -L/usr/X11R6/lib  
-lSM -lICE -ltiff -ljpeg -lpng -lz -lm -lXpm -lX11  -lutil -lcurses 
-lg  `gcc -print-libgcc-file-name` -lm -lc `gcc -print-libgcc-file-name`
Info: resolving __tzname by linking to __imp___tzname (auto-import)
ln temacs.exe bootstrap-emacs.exe
make[1]: Leaving directory `/c/project/emacs/emacs/src'
(cd lisp; make - --unix bootstrap EMACS=../src/bootstrap-emacs.exe)
make[1]: Entering directory `/c/project/emacs/emacs/lisp'
wd=/c/project/emacs/emacs/lisp; subdirs=`find $wd -type d -print`; for file in $subdirs; 
do case $file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;;
*) wins="$wins $file" ;; esac; done; \
for file in $wins; do \
   /c/project/emacs/emacs/lisp/../update-subdirs $file; \
done;
wd=/c/project/emacs/emacs/lisp; subdirs=`find $wd -type d -print`; for file in $subdirs; 
do case $file in */Old | */RCS | */CVS | */CVS/* | */.arch-ids | */.arch-ids/* | */=* ) ;;*) 
wins="$wins $file" ;; esac; done; \
echo Directories: $wins; \
../src/bootstrap-emacs.exe -batch --no-site-file --multibyte -l autoload 
--eval '(setq generated-autoload-file "/c/project/emacs/emacs/lisp/loaddefs.el")' 
-f batch-update-autoloads $wins
Directories: /c/project/emacs/emacs/lisp /c/project/emacs/emacs/lisp/calc 
/c/project/emacs/emacs/lisp/calendar /c/project/emacs/emacs/lisp/emacs-lisp 
/c/project/emacs/emacs/lisp/emulation /c/project/emacs/emacs/lisp/eshell 
/c/project/emacs/emacs/lisp/gnus /c/project/emacs/emacs/lisp/international 
/c/project/emacs/emacs/lisp/language /c/project/emacs/emacs/lisp/mail 
/c/project/emacs/emacs/lisp/mh-e /c/project/emacs/emacs/lisp/net 
/c/project/emacs/emacs/lisp/obsolete /c/project/emacs/emacs/lisp/play 
/c/project/emacs/emacs/lisp/progmodes /c/project/emacs/emacs/lisp/term 
/c/project/emacs/emacs/lisp/textmodes /c/project/emacs/emacs/lisp/toolbar
Warning: Lisp directory `/usr/local/share/emacs/21.3.50/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/site-lisp' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3.50/leim' does not exist.
Warning: Lisp directory `/usr/local/share/emacs/21.3.50/lisp' does not exist.
Cannot open load file: loadup.el
make[1]: *** [autoloads] Error 255
make[1]: Leaving directory `/c/project/emacs/emacs/lisp'
make: *** [bootstrap] Error 2
 


thanks
john ware

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

* Re: Trying to build from cvs
       [not found] <mailman.1960.1075998090.928.help-gnu-emacs@gnu.org>
@ 2004-02-05 20:04 ` Jason Rumney
  0 siblings, 0 replies; 2+ messages in thread
From: Jason Rumney @ 2004-02-05 20:04 UTC (permalink / raw)


"Ware, John" <jware@ball.com> writes:

> Hi all,
> 	I'm trying to build emacs from cvs and need some help with some errors. :-) 
> 	Running cygwin on win2k
> 	Here are the commands issued so far
> 	
> ./configure --with-jpeg --with-gif --with-tiff --with-xpm --with-x-toolkit=no
> 
> make bootstrap

> Cannot open load file: loadup.el

Do you have the file lisp/loadup.el? Perhaps your CVS tree is incomplete
for some reason. Otherwise, perhaps it is something to do with your
environment (recently a problem was discovered when $CDPATH was set
for example).

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

end of thread, other threads:[~2004-02-05 20:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-05 16:20 Trying to build from cvs Ware, John
     [not found] <mailman.1960.1075998090.928.help-gnu-emacs@gnu.org>
2004-02-05 20:04 ` Jason Rumney

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.