We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/mapbox/node-sqlite3/blob/master/scripts/build_against_node.sh#L73 says:
# broken for some unknown reason against io.js
I think the reason is that iojs builds have have started using ia32 in the pathname, instead of x86.
ia32
x86
I suggest changing:
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$PATH
to:
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$(pwd)/iojs-${NVER}-${platform}-ia32/bin:$PATH
That might fix the build issue. (Sorry, no pull request.)
The text was updated successfully, but these errors were encountered:
See: cscott/node-icu-bidi@04b2aaa
Sorry, something went wrong.
cope with incorrect naming of ios just tarballs - refs #461 nodejs/bu…
1127c27
…ild#45 #468
Thats a good fix, thanks. See also nodejs/build#45. Applied in 1127c27
No branches or pull requests
https://github.com/mapbox/node-sqlite3/blob/master/scripts/build_against_node.sh#L73 says:
I think the reason is that iojs builds have have started using
ia32
in the pathname, instead ofx86
.I suggest changing:
to:
That might fix the build issue. (Sorry, no pull request.)
The text was updated successfully, but these errors were encountered: