Re: Building libstdc++.dll the easy way

2005-10-05 Thread Danny Smith
- Original Message - From: "John W. Eaton" Sent: Thursday, 6 October 2005 09:13 > On 6-Oct-2005, Danny Smith wrote: > > | Building libstdc++.dll may be a "hard problem" for a mathematician or > | for libtool, but this is how an ordinary person coud do it. > | > | dlltool --output-de

Building libstdc++.dll the easy way

2005-10-05 Thread John W. Eaton
On 6-Oct-2005, Danny Smith wrote: | Building libstdc++.dll may be a "hard problem" for a mathematician or | for libtool, but this is how an ordinary person coud do it. | | dlltool --output-def libstdc++.def --export-all libstdc++.a | gcc -shared -olibstdc++.dll -Wl,--out-implib,libstdc++.dll

Building libstdc++.dll the easy way

2005-10-05 Thread Danny Smith
Building libstdc++.dll may be a "hard problem" for a mathematician or for libtool, but this is how an ordinary person coud do it. dlltool --output-def libstdc++.def --export-all libstdc++.a gcc -shared -olibstdc++.dll -Wl,--out-implib,libstdc++.dll.a \ libstdc++.def libstdc++.a The main