arvindm95 / unladen-swallow

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

--with-llvm gets confused by relative paths and objdirs #69

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
When building in a separate object directory, passing a relative path to
--with-llvm causes the path to be taken relative to the build directory
*or* the source directory most of the time, but relative to the source
directory when building the _llvm module (in setup.py.)

setup.py should probably do the same thing as the makefile does, which is
to take it relative to both build and source directories.

Original issue reported on code.google.com by thomaswout@gmail.com on 20 Jul 2009 at 8:50

GoogleCodeExporter commented 8 years ago
Fixed by making setup.py take the path as-is as well as relative to the srcdir, 
like
the Makefile does.

Original comment by thomaswout@gmail.com on 21 Jul 2009 at 11:11