File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -325,3 +325,24 @@ diff -aur target-org/webkit/Source/WTF/wtf/linux/MemoryFootprintLinux.cpp target
325
325
template<typename Functor>
326
326
static void forEachLine(FILE* file, Functor functor)
327
327
{
328
+ diff -aur target-org/webkit/Source/JavaScriptCore/Sources.txt target/webkit/Source/JavaScriptCore/Sources.txt
329
+ --- target-org/webkit/Source/JavaScriptCore/Sources.txt 2018-11-11 23:05:40.000000000 +0800
330
+ +++ target/webkit/Source/JavaScriptCore/Sources.txt 2018-11-12 00:03:26.000000000 +0800
331
+ @@ -1046,3 +1046,6 @@
332
+
333
+ // Derived Sources
334
+ yarr/YarrCanonicalizeUnicode.cpp
335
+ +
336
+ + // Polyfills
337
+ + polyfills/log2.cpp
338
+ diff -aur /dev/null target/webkit/Source/JavaScriptCore/polyfills/log2.cpp
339
+ --- /dev/null 2018-11-12 01:21:57.000000000 +0800
340
+ +++ target/webkit/Source/JavaScriptCore/polyfills/log2.cpp 2018-11-12 01:19:49.000000000 +0800
341
+ @@ -0,0 +1,7 @@
342
+ + #include <math.h>
343
+ +
344
+ + #if defined(__ANDROID__) && __ANDROID_API__ < 19
345
+ + double log2(double x) {
346
+ + return log(x) / log(2.0);
347
+ + }
348
+ + #endif
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ COMMON_LDFLAGS=" \
126
126
-Wl,--icf=safe \
127
127
-Wl,-z,noexecstack \
128
128
-Wl,--gc-sections \
129
+ -Wl,--no-undefined \
129
130
"
130
131
131
132
COMMON_CFLAGS=" \
You can’t perform that action at this time.
0 commit comments