all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* crt[i1].o with multiarch glibc
@ 2011-07-03 17:22 Michael Welsh Duggan
  2011-07-03 18:16 ` Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Welsh Duggan @ 2011-07-03 17:22 UTC (permalink / raw)
  To: emacs-devel

The Debian GNU/Linux distribution (and Ubuntu, it appears) have been
working on multiarch support in its unstable distribution.  (See
http://wiki.debian.org/Multiarch/ for details.)  This means that crt1.o
and crti.o end up in /usr/lib/i386-linux-gnu instead of /usr/lib.  Once
I figured this out, I was able to use --with-crt-dir to allow things to
compile again.

I was going to suggest that configure.in checked for the proper files in
/usr/lib/${canonical}, but ${canonical} is i686-pc-linux-gnu on this
system, so some reduction would have to be done to make that work.  If
this cannot or will not be done, it would be nice to add this to the
PROBLEMS file.

I would volunteer to do either of these, but I've had difficulty getting
an employer disclaimer.

-- 
Michael Welsh Duggan
(md5i@md5i.com)



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

* Re: crt[i1].o with multiarch glibc
  2011-07-03 17:22 crt[i1].o with multiarch glibc Michael Welsh Duggan
@ 2011-07-03 18:16 ` Andreas Schwab
  2011-07-03 19:02   ` Michael Welsh Duggan
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Schwab @ 2011-07-03 18:16 UTC (permalink / raw)
  To: Michael Welsh Duggan; +Cc: emacs-devel

Michael Welsh Duggan <md5i@md5i.com> writes:

> I was going to suggest that configure.in checked for the proper files in
> /usr/lib/${canonical}, but ${canonical} is i686-pc-linux-gnu on this
> system, so some reduction would have to be done to make that work.  If
> this cannot or will not be done, it would be nice to add this to the
> PROBLEMS file.

Does `gcc -print-file-name=crt1.o' work?

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



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

* Re: crt[i1].o with multiarch glibc
  2011-07-03 18:16 ` Andreas Schwab
@ 2011-07-03 19:02   ` Michael Welsh Duggan
  2011-07-03 23:07     ` David De La Harpe Golden
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Welsh Duggan @ 2011-07-03 19:02 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: emacs-devel

Andreas Schwab <schwab@linux-m68k.org> writes:

> Michael Welsh Duggan <md5i@md5i.com> writes:
>
>> I was going to suggest that configure.in checked for the proper files in
>> /usr/lib/${canonical}, but ${canonical} is i686-pc-linux-gnu on this
>> system, so some reduction would have to be done to make that work.  If
>> this cannot or will not be done, it would be nice to add this to the
>> PROBLEMS file.
>
> Does `gcc -print-file-name=crt1.o' work?

It does:

md5i@maru:~$ gcc -print-file-name=crt1.o
/usr/lib/i386-linux-gnu/gcc/i486-linux-gnu/4.6.1/../../../crt1.o

-- 
Michael Welsh Duggan
(md5i@md5i.com)



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

* Re: crt[i1].o with multiarch glibc
  2011-07-03 19:02   ` Michael Welsh Duggan
@ 2011-07-03 23:07     ` David De La Harpe Golden
  2011-07-04  1:34       ` Michael Welsh Duggan
  0 siblings, 1 reply; 5+ messages in thread
From: David De La Harpe Golden @ 2011-07-03 23:07 UTC (permalink / raw)
  To: emacs-devel

On 03/07/11 20:02, Michael Welsh Duggan wrote:
> Andreas Schwab<schwab@linux-m68k.org>  writes:

>> Does `gcc -print-file-name=crt1.o' work?
>
> It does:
>
> md5i@maru:~$ gcc -print-file-name=crt1.o
> /usr/lib/i386-linux-gnu/gcc/i486-linux-gnu/4.6.1/../../../crt1.o
>

But note that Glenn Morris recently (trunk rev 104778+) added a hack to 
configure.in to use -print-file-name to find the files. Is it not 
working on your system?




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

* Re: crt[i1].o with multiarch glibc
  2011-07-03 23:07     ` David De La Harpe Golden
@ 2011-07-04  1:34       ` Michael Welsh Duggan
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Welsh Duggan @ 2011-07-04  1:34 UTC (permalink / raw)
  To: David De La Harpe Golden; +Cc: emacs-devel

David De La Harpe Golden <david@harpegolden.net> writes:

> On 03/07/11 20:02, Michael Welsh Duggan wrote:
>> Andreas Schwab<schwab@linux-m68k.org>  writes:
>
>>> Does `gcc -print-file-name=crt1.o' work?
>>
>> It does:
>>
>> md5i@maru:~$ gcc -print-file-name=crt1.o
>> /usr/lib/i386-linux-gnu/gcc/i486-linux-gnu/4.6.1/../../../crt1.o
>>
>
> But note that Glenn Morris recently (trunk rev 104778+) added a hack
> to configure.in to use -print-file-name to find the files. Is it not
> working on your system?

Cancel that.  It was my fault, building in a different tree than the one
I had updated.  My apologies.  I can confirm that this works for me.

-- 
Michael Welsh Duggan
(md5i@md5i.com)



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

end of thread, other threads:[~2011-07-04  1:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-03 17:22 crt[i1].o with multiarch glibc Michael Welsh Duggan
2011-07-03 18:16 ` Andreas Schwab
2011-07-03 19:02   ` Michael Welsh Duggan
2011-07-03 23:07     ` David De La Harpe Golden
2011-07-04  1:34       ` Michael Welsh Duggan

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.