all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#6760: 24.0.50; ld: duplicate symbol _Qwindow in data.o and buffer.o
@ 2010-07-29 22:06 Peter Dyballa
  2010-07-30  4:53 ` Dan Nicolaescu
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Dyballa @ 2010-07-29 22:06 UTC (permalink / raw)
  To: 6760

Hello!

When trying to build the NS variant with GCC 4.2 I get:

gcc-4.2  -prebind -framework AppKit -Xlinker -headerpad -Xlinker 6C8   \
	  -o temacs pre-crt0.o dispnew.o frame.o scroll.o xdisp.o menu.o   
window.o charset.o coding.o category.o ccl.o character.o chartab.o  
bidi.o cm.o term.o terminal.o xfaces.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 font.o print.o lread.o syntax.o unexmacosx.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    
nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o fontset.o  
fringe.o image.o   terminfo.o lastfile.o               -lresolv  - 
lncurses
ld: duplicate symbol _Qwindow in data.o and buffer.o
collect2: ld returned 1 exit status
make[1]: *** [temacs] Error 1
make[1]: Target `all' not remade because of errors.
make: *** [src] Error 2
make: Target `all' not remade because of errors.


src/data.c:85:Lisp_Object Qwindow;
src/data.c:212:	return Qwindow;
src/data.c:3188:  Qwindow = intern_c_string ("window");
src/data.c:3213:  staticpro (&Qwindow);
src/buffer.c:165:Lisp_Object Qpriority, Qwindow, Qevaporate,  
Qbefore_string, Qafter_string;
src/buffer.c:3015:	      window = Foverlay_get (overlay, Qwindow);
src/buffer.c:3159:      window = Foverlay_get (overlay, Qwindow);
src/buffer.c:3187:      window = Foverlay_get (overlay, Qwindow);
src/buffer.c:5348:  Qwindow = intern_c_string ("window");
src/buffer.c:5349:  staticpro (&Qwindow);

Mac OS X 10.5.8, PPC

--
Greetings

   Pete

Ce qui été compris n'existe plus.
				(Paul Eluard)






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

* bug#6760: 24.0.50; ld: duplicate symbol _Qwindow in data.o and buffer.o
  2010-07-29 22:06 bug#6760: 24.0.50; ld: duplicate symbol _Qwindow in data.o and buffer.o Peter Dyballa
@ 2010-07-30  4:53 ` Dan Nicolaescu
  0 siblings, 0 replies; 2+ messages in thread
From: Dan Nicolaescu @ 2010-07-30  4:53 UTC (permalink / raw)
  To: Peter Dyballa; +Cc: 6760-done

Peter Dyballa <Peter_Dyballa@Freenet.DE> writes:

> Hello!
>
> When trying to build the NS variant with GCC 4.2 I get:
>
> gcc-4.2  -prebind -framework AppKit -Xlinker -headerpad -Xlinker 6C8   \
> 	  -o temacs pre-crt0.o dispnew.o frame.o scroll.o xdisp.o
> menu.o   window.o charset.o coding.o category.o ccl.o character.o
> chartab.o  bidi.o cm.o term.o terminal.o xfaces.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 font.o print.o lread.o
> syntax.o unexmacosx.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    nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o
> nsfont.o fontset.o  fringe.o image.o   terminfo.o lastfile.o
> -lresolv  - 
> lncurses
> ld: duplicate symbol _Qwindow in data.o and buffer.o
> collect2: ld returned 1 exit status
> make[1]: *** [temacs] Error 1
> make[1]: Target `all' not remade because of errors.
> make: *** [src] Error 2
> make: Target `all' not remade because of errors.
>
>
> src/data.c:85:Lisp_Object Qwindow;
> src/data.c:212:	return Qwindow;
> src/data.c:3188:  Qwindow = intern_c_string ("window");
> src/data.c:3213:  staticpro (&Qwindow);
> src/buffer.c:165:Lisp_Object Qpriority, Qwindow, Qevaporate,
> Qbefore_string, Qafter_string;
> src/buffer.c:3015:	      window = Foverlay_get (overlay, Qwindow);
> src/buffer.c:3159:      window = Foverlay_get (overlay, Qwindow);
> src/buffer.c:3187:      window = Foverlay_get (overlay, Qwindow);
> src/buffer.c:5348:  Qwindow = intern_c_string ("window");
> src/buffer.c:5349:  staticpro (&Qwindow);

Thanks, fixed.
This bug has been around for a very long time... 





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

end of thread, other threads:[~2010-07-30  4:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-29 22:06 bug#6760: 24.0.50; ld: duplicate symbol _Qwindow in data.o and buffer.o Peter Dyballa
2010-07-30  4:53 ` Dan Nicolaescu

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.