From 7d1d2b742ec61f9d3cdb30509194186cfe9f4680 Mon Sep 17 00:00:00 2001 From: Petko Bordjukov Date: Tue, 24 Oct 2017 00:44:22 +0300 Subject: [PATCH] Revert "Reorder library flags in accordance with the wiki" The reordering was causing mini_racer to fail with a symbol lookup error for symbol _ZN2v84base5debug27EnableInProcessStackDumpingEv This reverts commit ace43f148faf4e17e3a409baf357a6f8f55dca92. --- ext/libv8/paths.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/libv8/paths.rb b/ext/libv8/paths.rb index 34cb70b..4c5e64a 100644 --- a/ext/libv8/paths.rb +++ b/ext/libv8/paths.rb @@ -11,7 +11,7 @@ module Libv8 end def object_paths - [:base, :libbase, :snapshot, :libplatform, :libsampler].map do |name| + [:base, :libplatform, :libsampler, :libbase, :snapshot].map do |name| Shellwords.escape libv8_object(name) end end