Skip to content

build: add "--partly-static" options to generate with libgcc and libstdc++

Rodrigo Muino Tomonari requested to merge github/fork/medns/master into master

A lot of machines don't upgrade libstdc++.so library for a long time, but the new version of node requires the latest GLIBCXX.

./node: /usr/lib64/libstdc++.so.6: versionGLIBCXX_3.4.15' not found (required by ./node)`

Using "--fully-static" configurable options may reslove this problem, but the sideeffect is that the size of the executable file will be increased.

Adding "--partly-static" configurable options it will only build libgcc and libstdc++ libraries into executable file, reslove problem and control the size of file.

Merge request reports

Loading