Re: [Python-Dev] configure error: rm: conftest.dSYM: is a directory

2008-04-22 Thread Ronald Oussoren


On 5 Apr, 2008, at 21:17, [EMAIL PROTECTED] wrote:

I just noticed this error message during configure:

   checking whether gcc accepts -Olimit 1500... no
   checking whether gcc supports ParseTuple __format__... no
   checking whether pthreads are available without options... yes
   checking whether g++ also accepts flags for thread support... no
   checking for ANSI C header files... rm: conftest.dSYM: is a  
directory

   rm: conftest.dSYM: is a directory
   yes
   checking for sys/types.h... yes
   checking for sys/stat.h... yes
   checking for stdlib.h... yes
   checking for string.h... yes

Note the rm: conftest.dSYM: is a directory.  This occurred a few  
times
during the configure process.  Didn't cause it to conk out, but is  
annoying.


I've looked into this issue. It is harmless and caused by an  
interaction between

AC_TRY_RUN and gcc on leopard.

Gcc generates '.dSYM' directories when linking with debugging enabled.  
These

directories contain detached debugging information (see man dsymutil).

AC_TRY_RUN tries to remove 'conftest.*' using rm, without the -r flag.  
The end result

is an error message during configure and a 'config.dSYM' turd.

AFAIK this not easily fixed without changing the definition of  
AC_TRY_RUN, at least not

without crude hacks.

Ronald



Skip
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/ronaldoussoren%40mac.com




smime.p7s
Description: S/MIME cryptographic signature
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configure error: rm: conftest.dSYM: is a directory

2008-04-07 Thread Robert Kern
[EMAIL PROTECTED] wrote:
  Note the rm: conftest.dSYM: is a directory.  This occurred a few
  times during the configure process.  Didn't cause it to conk out, but
  is annoying.
 
 Brett I am assuming this is on your OS X machine, Skip?
 
 Yes, sorry.  I forgot to mention that.  As long as someone else sees it and
 feels fine to ignore it, I'm fine with it.  I suspect it's a configure
 problem anyway, not a Python problem.

I've seen it with just about every ./configure script on OS X 10.5. It's not 
specific to Python, and I haven't seen it cause any actual problems.

-- 
Robert Kern

I have come to believe that the whole world is an enigma, a harmless enigma
  that is made terrible by our own mad attempt to interpret it as though it had
  an underlying truth.
   -- Umberto Eco

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configure error: rm: conftest.dSYM: is a directory

2008-04-06 Thread Brett Cannon
On Sat, Apr 5, 2008 at 9:17 PM,  [EMAIL PROTECTED] wrote:
 I just noticed this error message during configure:

 checking whether gcc accepts -Olimit 1500... no
 checking whether gcc supports ParseTuple __format__... no
 checking whether pthreads are available without options... yes
 checking whether g++ also accepts flags for thread support... no
 checking for ANSI C header files... rm: conftest.dSYM: is a directory
 rm: conftest.dSYM: is a directory
 yes
 checking for sys/types.h... yes
 checking for sys/stat.h... yes
 checking for stdlib.h... yes
 checking for string.h... yes

  Note the rm: conftest.dSYM: is a directory.  This occurred a few times
  during the configure process.  Didn't cause it to conk out, but is annoying.

I am assuming this is on your OS X machine, Skip? I have been getting
that message for a while on my OS X machine as well. Same with some
linking message when building ctypes. Never bothered to debug them
since they never seemed to affect anything.

-Brett
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] configure error: rm: conftest.dSYM: is a directory

2008-04-06 Thread skip

 Note the rm: conftest.dSYM: is a directory.  This occurred a few
 times during the configure process.  Didn't cause it to conk out, but
 is annoying.

Brett I am assuming this is on your OS X machine, Skip?

Yes, sorry.  I forgot to mention that.  As long as someone else sees it and
feels fine to ignore it, I'm fine with it.  I suspect it's a configure
problem anyway, not a Python problem.

Skip
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com