При компиляции NodeJS версии 4.0 и выше в CentOS 6 после выполнения make может выскочить ошибка:
WARNING: C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=g++)
Лечение простое:
curl http://linuxsoft.cern.ch/cern/scl/slc6-scl.repo > /etc/yum.repos.d/slc6-scl.repo rpm --import http://ftp.mirrorservice.org/sites/ftp.scientificlinux.org/linux/scientific/51/i386/RPM-GPG-KEYs/RPM-GPG-KEY-cern yum install -y devtoolset-3
Потом:
scl enable devtoolset-3 bash
И всё, у вас самый свежий G++! 🙂
Прокомментировать