Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libv8 to fix error on bundle install on OS X Yosemite
I was seeing the following error when running `bundle install`: Unable to find a compiler officially supported by v8. It is recommended to use GCC v4.4 or higher Using compiler: g++ This then seems to have resulted in the following compilation error: ../src/cached-powers.cc:136:18: error: unused variable 'kCachedPowersLength' [-Werror,-Wunused-const-variable] static const int kCachedPowersLength = ARRAY_SIZE(kCachedPowers); ^ I believe the problem was fixed [1] between version 3.16.14.3 and version 3.16.14.7 of libv8 and a simple `bundle update libv8` seems to have done the trick. [1]: rubyjs/libv8#124
- Loading branch information