-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build error on Cygwin #12
Comments
I renamed libarac.so to libarac.dll it helped g++ find the library, but I guess the library exports aren't working.
|
fixed the undefined reference errors by adding python2.6 as a lib dependency in my local SConstruct file; not sure if it's a problem with my environment or not otherwise I would change the project's file. |
You have to make sure that libarac.so is found. For that, it needs to I recommend you do that by creating a symbolic link. See the 2nd point On 11 September 2011 23:48, BAM-BAM-BAM
Dipl. Inf. Justin Bayer |
unfortunately I don't think it's that easy. I'm using the Windows python2.7 binary, since it was fairly easy to get scipy installed and running with it. I had tried to use the python packaged with cygwin, but after a couple of days gave up on it since I could not get scipy compiled with it. Since I'm using the Windows version of python, I think libarac must be compiled as a .dll or .pyd. And this seems difficult since it seem like I would have to come up with all new project files, dependencies, etc. (i.e. throw away the entire build/make code that comes with arac.) I did try symbolic links, copying the file to multiple locations (/usr/local/lib, /usr/lib) etc. The library, when renamed to libarac.dll or libarac.pyd was found by the linker but I just couldn't get it to resolve all the link references. So I haven't figure out how to build for Wndows/cygwin yet; I'm just using slow networks :( |
I have no experience making arac run on windows. I also do not have You can try the PyBrian mailinglist (see http://pybrain.org for more On 18 September 2011 02:11, BAM-BAM-BAM
Dipl. Inf. Justin Bayer |
Try the following
That would resolve your link references. Be sure you have BLAS installed and on path and that |
I'm trying to build arac on cygwin/Window 7 64-bit.
This is the error I eventually get when using scons:
... so g++ can't find the arac library ... and I can't either.
Here are the lines in the SConstruct that are asking for the arac library:
libarac.so is successfully being generated earlier in the build process.
any ideas on how to get around this problem?
thanks!
The text was updated successfully, but these errors were encountered: