[Python-bugs-list] [ python-Bugs-690309 ] 2.3a2 Sol8 make fails at _iconv_codec.

SourceForge.net noreply@sourceforge.net
Mon, 24 Feb 2003 07:10:17 -0800


Bugs item #690309, was opened at 2003-02-20 22:53
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=690309&group_id=5470

Category: Build
Group: Python 2.3
Status: Open
Resolution: None
Priority: 5
Submitted By: Inyeol Lee (inyeol)
Assigned to: Nobody/Anonymous (nobody)
Summary: 2.3a2 Sol8 make fails at _iconv_codec.

Initial Comment:
Python 2.3a2 build process fails during building
_iconv_codec
module. The message is;

[...]
gcc -shared
build/temp.solaris-2.8-sun4u-2.3/_iconv_codec.o
-L/home/inyeol/util/python/lib -L/usr/local/lib -o
build/lib.solaris-2.8-sun4u-2.3/_iconv_codec.so
Traceback (most recent call last):

  [... long traceback here...]

  File "./setup.py", line 209, in build_extension
    imp.load_dynamic(ext.name, ext_filename)
RuntimeError: can't initialize the _iconv_codec module:
iconv_open() failed
*** Error code 1
make: Fatal error: Command failed for target
`sharedmods'

My build environment is gcc2.95.3 with Solaris 8
linker.
I've built 2.2, 2,2,1, 2,2,2, 2,3a1 with the same env
and there
was no (major) issues like this. I attached my
configure and
make log messages.


----------------------------------------------------------------------

>Comment By: Walter Dörwald (doerwalter)
Date: 2003-02-24 16:10

Message:
Logged In: YES 
user_id=89016

These are just warnings, I see no error here. BTW the GNU
implementation does supports both ASCII and ISO8859-1 as
encodings, so I don't see why 1.12 should break anything

----------------------------------------------------------------------

Comment By: Alejandro Lopez-Valencia (dradul)
Date: 2003-02-23 13:25

Message:
Logged In: YES 
user_id=659006

The fix applied to _iconv_codec.c (in version 1.12) *breaks* the 
extension unnder cygwin and possibly other systems that use 
GNU iconv instead of a native library (namely, Solaris and BSD 
derivatives). The relevant errors:

building '_iconv_codec' extension
gcc -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -I. -
I/cvsroot/python/dist/src/./Include -I/usr/local/include -
I/tmp/Include -I/tmp/python -c /cvsroot/python/dist
/src/Modules/_iconv_codec.c -o build/temp.cygwin-1.3.20-i686-
2.3/_iconv_codec.o
cc1: warning: changing search order for system 
directory "/usr/local/include"
cc1: warning:   as it has already been specified as a non-system 
directory
/cvsroot/python/dist/src/Modules/_iconv_codec.c: In function 
`iconvcodec_encode'
:
/cvsroot/python/dist/src/Modules/_iconv_codec.c:147: warning: 
passing arg 2 of `
libiconv' from incompatible pointer type
/cvsroot/python/dist/src/Modules/_iconv_codec.c: In function 
`iconvcodec_decode'
:
/cvsroot/python/dist/src/Modules/_iconv_codec.c:357: warning: 
passing arg 2 of `
libiconv' from incompatible pointer type
/cvsroot/python/dist/src/Modules/_iconv_codec.c: In function 
`init_iconv_codec':

/cvsroot/python/dist/src/Modules/_iconv_codec.c:682: warning: 
passing arg 2 of `
libiconv' from incompatible pointer type
gcc -shared -Wl,--enable-auto-image-base build/temp.cygwin-
1.3.20-i686-2.3/_icon
v_codec.o -L/usr/local/lib -L. -liconv -lpython2.3 -o 
build/lib.cygwin-1.3.20-i6
86-2.3/_iconv_codec.dll
running build_scripts

----------------------------------------------------------------------

Comment By: Walter Dörwald (doerwalter)
Date: 2003-02-21 19:29

Message:
Logged In: YES 
user_id=89016

I changed the init function to use 'ISO8859-1' instead of
'ASCII' as the test encoding. Can someone test whether this
fixes anything?

----------------------------------------------------------------------

Comment By: Neal Norwitz (nnorwitz)
Date: 2003-02-20 23:15

Message:
Logged In: YES 
user_id=33168

In order to get the build to proceed, you can change line
210 of setup.py from:

        except ImportError, why:
to:
        except (ImportError, RuntimeError), why:

This is just before:
    self.announce('*** WARNING: renaming "%s" since
importing it' ...)

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=690309&group_id=5470