On Mon, Jul 4, 2011 at 3:49 PM, Aly Tawfik wrote:
> On Jun 20, 12:44 pm, sewpafly wrote:
>> I was able to a little further by changing 2 lines in Makefile.pre.in.
>>
>> On line 170, changed:
>> DLLLIBRARY= @DLLLIBRARY@
>> to:
>> DLLLIBRARY= libpython$(VERSION).dll
>>
>> On line 509 it had
On Jun 20, 12:44 pm, sewpafly wrote:
> I was able to a little further by changing 2 lines in Makefile.pre.in.
>
> On line 170, changed:
> DLLLIBRARY= @DLLLIBRARY@
> to:
> DLLLIBRARY= libpython$(VERSION).dll
>
> On line 509 it had:
> $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OB
On Jun 20, 12:44 pm, sewpafly wrote:
> I was able to a little further by changing 2 lines in Makefile.pre.in.
>
> On line 170, changed:
> DLLLIBRARY= @DLLLIBRARY@
> to:
> DLLLIBRARY= libpython$(VERSION).dll
>
> On line 509 it had:
> $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OB
I was able to a little further by changing 2 lines in Makefile.pre.in.
On line 170, changed:
DLLLIBRARY= @DLLLIBRARY@
to:
DLLLIBRARY= libpython$(VERSION).dll
On line 509 it had:
$(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
which I changed to:
$(DLLLIBRARY) libpython$(
Hello,
I've downloaded the 3.2 source tarball from python.org and tried to
compile Python from scratch in a Cygwin 1.7.7 environment. Configure
works as expected. Make fails with the following message:
make: *** No rule to make target `libpython3.2m.dll.a', needed by
`python.exe'. Stop.
T