MSYS / MINGW32 / PYTHON / SWIG

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • orion30

    MSYS / MINGW32 / PYTHON / SWIG

    I would like to know if somebody has successfully uses
    SWIF using MSYS / MINGW32 / PYTHON.

    I tried to do it but apparently, I failed.

    Is there somebody who can help me and give a little example.
    There is a little example in http://sebsauvage.net/python/mingw.html
    but it's not working for me.

    At more, I would like to used the dll versions of the glibc.
    How to proceed in order to build a module (using swig) which uses a such dll
    ?

    Best regards


  • cmkl

    #2
    Re: MSYS / MINGW32 / PYTHON / SWIG

    "orion30" <orion30@ifranc e.com> wrote in message news:<bda6qd$jk j$1@news-reader2.wanadoo .fr>...[color=blue]
    > I would like to know if somebody has successfully uses
    > SWIF using MSYS / MINGW32 / PYTHON.
    >
    > I tried to do it but apparently, I failed.
    >
    > Is there somebody who can help me and give a little example.
    > There is a little example in http://sebsauvage.net/python/mingw.html
    > but it's not working for me.
    >
    > At more, I would like to used the dll versions of the glibc.
    > How to proceed in order to build a module (using swig) which uses a such dll
    > ?
    >
    > Best regards[/color]

    I have no idea what the swif library could be, but in principle it is
    possible to wrap libraries written in C/C++ with swig to python.
    BTW: mingw32 uses Microsofts msvcrt.dll. This is the counterpart of
    the glibc on Linux. Of course the library does not have most of the
    posix functionality. If you use posix functions like fork you have
    to use cygwin instead of mingw.

    Can you tell what is not working for you with the example above?

    Carl

    Comment

    Working...