This repository was archived by the owner on Jun 19, 2019. It is now read-only.

Description
SpiderNode assumes libstdc++ on Mac, where it includes the <tr1/type_traits> header, which is only available in libstdc++:
|
#ifdef __APPLE__ |
|
#include <tr1/type_traits> |
|
#else |
|
#include <type_traits> // std::remove_reference |
|
#endif |
But Electron builds with libc++:
https://github.com/electron/electron/blob/master/toolchain.gypi#L115-L116
So when I configure Electron to build SpiderNode, the build fails with "'tr1/type_traits' file not found."