- simplified PKGBUILD recipe - build in silent mode - make sure we link with static zlib and zstd - fix qmltyperegistrar 'Cannot open foreign types file' error - fix race condition when building qtactiveqt tools - fix *.pc & *.prl files further by removing full path to libs
12 lines
346 B
Diff
12 lines
346 B
Diff
--- a/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp
|
|
+++ b/qtscript/src/3rdparty/javascriptcore/JavaScriptCore/jit/JITStubs.cpp
|
|
@@ -68,7 +68,7 @@
|
|
|
|
namespace JSC {
|
|
|
|
-#if OS(DARWIN) || OS(WINDOWS)
|
|
+#if OS(DARWIN) || (OS(WINDOWS) && CPU(X86))
|
|
#define SYMBOL_STRING(name) "_" #name
|
|
#else
|
|
#define SYMBOL_STRING(name) #name
|