Yes, I seem to have it working. At least at the moment, it compiles,
installs, and I can run the tests as described in the README.
jcc_d.lib seems to be the static library built with debugging enabled.
However, JCC does not seem to be built with debugging enabled by default (if
you create a dummy file to get around it not finding jcc_d.lib, you'll find
it complains about not finding python27_d.lib before it bombs out with
unresolved symbols).
I was able to work around the issue by deleting line 160 from setup.py in
the neo4py package.
FROM:
jcc_args = [
cpp.__file__,
"--debug",
"--shared",
TO:
jcc_args = [
cpp.__file__,
# DELETED LINE
"--shared",
--
View this message in context:
http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Building-neo4jpy-for-JCC-in-windows-tp3046129p3199460.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user