SpiderMonkey is the code-name for the Mozilla's C implementation of JavaScript. This package contains SpiderMonkey 17.
16 lines
611 B
C++
16 lines
611 B
C++
$NetBSD: patch-js_src_methodjit_MethodJIT.cpp,v 1.1 2016/05/20 18:45:22 youri Exp $
|
|
|
|
# This does not only apply to linux, but all ELF platforms (otherwise the
|
|
# generated code will not be PIC)
|
|
|
|
--- js/src/methodjit/MethodJIT.cpp.orig 2012-08-24 22:55:40.000000000 +0000
|
|
+++ js/src/methodjit/MethodJIT.cpp
|
|
@@ -135,7 +135,7 @@ PopActiveVMFrame(VMFrame &f)
|
|
|
|
JS_STATIC_ASSERT(offsetof(FrameRegs, sp) == 0);
|
|
|
|
-#if defined(__linux__) && defined(JS_CPU_X64)
|
|
+#if defined(__ELF__) && defined(JS_CPU_X64)
|
|
# define SYMBOL_STRING_RELOC(name) #name "@plt"
|
|
#else
|
|
# define SYMBOL_STRING_RELOC(name) SYMBOL_STRING(name)
|