leonhd / unladen-swallow

Automatically exported from code.google.com/p/unladen-swallow
Other
1 stars 1 forks source link

Unladen --without-llvm should not link with libstdc++ #124

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
As discussed on python-dev, some people want to avoid this.  I don't know
what it requires, but I'm filing this here so we don't forget about the
request.

Original issue reported on code.google.com by reid.kle...@gmail.com on 21 Jan 2010 at 6:14

GoogleCodeExporter commented 8 years ago

Original comment by reid.kle...@gmail.com on 21 Jan 2010 at 6:14

GoogleCodeExporter commented 8 years ago
Patch sent for review.

Original comment by collinw on 26 Jan 2010 at 12:57

GoogleCodeExporter commented 8 years ago
Fixed in r1036.

Before:

$ otool -L ./python.exe 
./python.exe:
    /usr/lib/libSystem.B.dylib
    /usr/lib/libstdc++.6.dylib
    /usr/lib/libgcc_s.1.dylib

After:

$ otool -L ./python.exe 
./python.exe:
    /usr/lib/libSystem.B.dylib
    /usr/lib/libgcc_s.1.dylib

Original comment by collinw on 26 Jan 2010 at 1:20