Closed
Description
- Version: v10.7.0
- Platform: Linux 4.14.55 x86_64
- Subsystem:
Building node 10.7.0 fails when compiling src/tracing/traced_value.cc with the following error:
../src/tracing/traced_value.cc:22:30: error: '__builtin_fpclassify' is not a member of 'std'
#define FPCLASSIFY_NAMESPACE std
Adding
#include <cmath>
to the list of include files in traced_value.cc
solves the compilation problem.