You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two gcc versions installed. However, I'm building node 8.15.1 with gcc-5. To achieve this, I'm using environment variables with CC,CXX,AR,... It works but at some point environment variables are not used. I noticed it when building process is using mksnapshot.
This line would indicate mksnapshotis being linked using g++-5.
/tmp/node-v8.15.1/out/Release/mksnapshot: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /tmp/node-v8.15.1/out/Release/mksnapshot)
This would also indicate it was built by GCC >= 4.9.
But the runtime loader can't find the right libstdc++.so.6 version. Try locate libstdc++.so.6 to search for the version ones. For example:
Hello,
I have two gcc versions installed. However, I'm building node 8.15.1 with gcc-5. To achieve this, I'm using environment variables with CC,CXX,AR,... It works but at some point environment variables are not used. I noticed it when building process is using
mksnapshot
.below failed make step:
So it seems,
mksnapshot
is not built using the gcc version I set with export.The text was updated successfully, but these errors were encountered: