-
Notifications
You must be signed in to change notification settings - Fork 30.1k
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
Internal modules problem with $ in identifiers on AIX #2272
Labels
module
Issues and PRs related to the module subsystem.
Comments
I think it's fine. I chose |
Fishrock123
changed the title
Internal modules problem with $ in identifiers
Internal modules problem with $ in identifiers on AIX
Jul 30, 2015
Thanks, I'll include that change when I submit the PR to add AIX support |
I think this can be closed for now, with discussion continuing on #2364. It can always be reopened, of course. |
mhdawson
added a commit
to mhdawson/io.js
that referenced
this issue
Sep 15, 2015
These are the core changes that allow AIX to compile. There are still some test failures as there are some patches needed for libuv and npm that we'll need to contribute through those communities but this set allows node to be built on AIX and pass most of the core tests The change in js2c is because AIX does not support $ in identifier names. See the discussion/agreement in nodejs#2272 PR-URL: nodejs#2364 Reviewed-By: Ben Noordhuis <ben@strongloop.com> Reviewed-By: Rod Vagg <r@va.gg>
mhdawson
added a commit
that referenced
this issue
Sep 15, 2015
These are the core changes that allow AIX to compile. There are still some test failures as there are some patches needed for libuv and npm that we'll need to contribute through those communities but this set allows node to be built on AIX and pass most of the core tests The change in js2c is because AIX does not support $ in identifier names. See the discussion/agreement in #2272 PR-URL: #2364 Reviewed-By: Ben Noordhuis <ben@strongloop.com> Reviewed-By: Rod Vagg <r@va.gg>
mhdawson
added a commit
that referenced
this issue
Sep 15, 2015
These are the core changes that allow AIX to compile. There are still some test failures as there are some patches needed for libuv and npm that we'll need to contribute through those communities but this set allows node to be built on AIX and pass most of the core tests The change in js2c is because AIX does not support $ in identifier names. See the discussion/agreement in #2272 PR-URL: #2364 Reviewed-By: Ben Noordhuis <ben@strongloop.com> Reviewed-By: Rod Vagg <r@va.gg>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Support for internal modules was added in:
2db758c
As part of this, this line in tools/utils.py converts a path name into an identifier
Unfortunately support for a $ in an identifier is implementation specific and is not supported on AIX which causes compiler failures on the generated node_natives.h file.
I'd propose to change the line to:
@vkurchatkin comments ?
The text was updated successfully, but these errors were encountered: