Skip to content
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: link libatomic on mac and linux #28232

Closed
wants to merge 1 commit into from
Closed

Conversation

devsnek
Copy link
Member

@devsnek devsnek commented Jun 14, 2019

Fixes #28231

cc @nodejs/build

Checklist
  • make -j4 test (UNIX), or vcbuild test (Windows) passes
  • commit message follows commit guidelines

@devsnek devsnek added the build Issues and PRs related to build files or the CI. label Jun 14, 2019
@devsnek devsnek requested a review from addaleax June 14, 2019 21:04
@nodejs-github-bot
Copy link
Collaborator

nodejs-github-bot commented Jun 14, 2019

Sadly, an error occurred when I tried to trigger a build. :(
CI: https://ci.nodejs.org/job/node-test-pull-request/23892/

node.gyp Show resolved Hide resolved
@devsnek
Copy link
Member Author

devsnek commented Jun 16, 2019

@nodejs/build macos failed with no library found for -latomic.

@rvagg
Copy link
Member

rvagg commented Jun 17, 2019

@devsnek do you have any suggestions for actions for Build here? Sounds like a blocker if this won't pass on one the platforms you're intending to impact.

@addaleax
Copy link
Member

@devsnek Are you building Node.js in a non-standard way (shared library or similar)? If this is already a dep for V8, I’m even more surprised that you’ve run into trouble…

@devsnek
Copy link
Member Author

devsnek commented Jun 17, 2019

I just pulled and ran make on a wsl debian install. i didn't configure it weirdly or anything.

@sam-github
Copy link
Contributor

@devsnek can you provide more platform information, like gcc (I assume its gcc) version, and uname output?

@devsnek
Copy link
Member Author

devsnek commented Jun 17, 2019

Linux xone 4.19.43-microsoft-standard #1 SMP Mon May 20 19:35:22 UTC 2019 x86_64 GNU/Linux and clang version 9.0.0

@devsnek
Copy link
Member Author

devsnek commented Jun 18, 2019

also a problem on a native (not wsl) linux i just set up (Linux xone 4.19.49-1-MANJARO #1 SMP PREEMPT Sun Jun 9 20:24:20 UTC 2019 x86_64 GNU/Linux, clang-8.0.0)

@devsnek
Copy link
Member Author

devsnek commented Jun 18, 2019

I'm going to guess the issue is Clang does not currently automatically link against libatomic when using libgcc_s. You may need to manually add -latomic to support this configuration when using non-native atomic operations (if you see link errors referring to __atomic_* functions). (https://clang.llvm.org/docs/Toolchain.html)

Perhaps we should get a linux clang ci machine?

@sam-github
Copy link
Contributor

Perhaps we should get a linux clang ci machine?

Unless it comes with a volunteer to maintain it, I'm not sure that extending our build infrastructure is a good idea.

@nodejs/build Perhaps -latomic should be added to build platforms for all non-Windows platforms? I haven't done an investigation, but I believe this would make libatomic a build dep, even for toolchains that don't need it, which is a downside, but it could possibly make builds more consistent as an upside. One question to be answered would be if it was a build dep, would it become a runtime dep for binaries from toolchains that do not currently need libatomic? That would be backwards incompatible, so I assume a non-starter for 12.x, and maybe not a good idea for any version.

Also, its not clear to me - do we officially support clang? I'm sure we would make changes to allow people who want to use clang to be able, but I'm not sure its officially supported, to the point that someone from build would go through all our machines and update their ansibles, etc., to have libatomic (if that was required after adding -latomic to all builds).

Another question, for .gyp experts, is there a way to add linker flags conditionally based on the toolchain?

@nodejs-github-bot
Copy link
Collaborator

@richardlau
Copy link
Member

Another question, for .gyp experts, is there a way to add linker flags conditionally based on the toolchain?

Yes. We define llvm_version:

o['variables']['llvm_version'] = get_llvm_version(CC) if is_clang else 0

e.g. used to set cflags (but could be libraries as in this PR):

'conditions': [
[ 'llvm_version==0', {
'cflags': ['-Wno-old-style-declaration',],
}],

There's also a clang variable:

'clang%': 0,
(set in

node/common.gypi

Lines 112 to 114 in d2634be

['OS=="mac"', {
'clang%': 1,
}],
)

@sam-github
Copy link
Contributor

I don't have the background to approve or reject, but seems like its failing to build on at least OS X:

osx/nodes/osx1011/out/Release/libv8_compiler.a /Users/iojs/build/workspace/node-test-commit-osx/nodes/osx1011/out/Release/libv8_initializers.a -latomic -framework CoreFoundation -lm
09:55:55 ld: library not found for -latomic

@devsnek
Copy link
Member Author

devsnek commented Jun 18, 2019

seems like this should be (OS == "linux" or OS == "mac") and llvm_version != 0?

@richardlau
Copy link
Member

I guess the question is if this is needed on mac as the OS X builds have not (AFAIK) been failing and do use clang by default.

@devsnek
Copy link
Member Author

devsnek commented Jun 18, 2019

@richardlau i've needed it on my mac at least.

@nodejs-github-bot
Copy link
Collaborator

@devsnek
Copy link
Member Author

devsnek commented Jun 18, 2019

checking llvm_version seems to have worked!

@nodejs-github-bot
Copy link
Collaborator

@sam-github
Copy link
Contributor

CI didn't pass, probably needs another kick (but I'm on poor wifi ATM, can't do).

@nodejs-github-bot
Copy link
Collaborator

@devsnek
Copy link
Member Author

devsnek commented Jun 19, 2019

it's always parallel/test-worker-debug cc @joyeecheung

i am assuming the failure is unrelated to this change though.

@devsnek
Copy link
Member Author

devsnek commented Jun 21, 2019

this needs approvals for the changed semantics

@sam-github sam-github added gyp Issues and PRs related to the GYP tool and .gyp build files linux Issues and PRs related to the Linux platform. macos Issues and PRs related to the macOS platform / OSX. labels Jun 21, 2019
devsnek added a commit to devsnek/node that referenced this pull request Jun 21, 2019
Fixes nodejs#28231

PR-URL: nodejs#28232
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Sam Roberts <[email protected]>
Reviewed-By: James M Snell <[email protected]>
@devsnek
Copy link
Member Author

devsnek commented Jun 21, 2019

Landed in ab3174c

@ryandesign
Copy link
Contributor

do we officially support clang?

If you don't support clang, you effectively don't support macOS. Please support clang and macOS.

@sam-github
Copy link
Contributor

When you quoted me, you removed context, that was in response to a question about clang on linux.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build Issues and PRs related to build files or the CI. gyp Issues and PRs related to the GYP tool and .gyp build files linux Issues and PRs related to the Linux platform. macos Issues and PRs related to the macOS platform / OSX.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

__atomic_is_lock_free undefined on clang
8 participants