frida 16.5.6 → 16.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/releng/deps.toml +4 -3
- package/releng/devkit.py +3 -2
- package/releng/env_generic.py +4 -3
- package/releng/machine_spec.py +5 -1
- package/subprojects/frida-core.wrap +1 -1
package/package.json
CHANGED
package/releng/deps.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[dependencies]
|
|
2
|
-
version = "
|
|
3
|
-
bootstrap_version = "
|
|
2
|
+
version = "20241105"
|
|
3
|
+
bootstrap_version = "20241006"
|
|
4
4
|
|
|
5
5
|
[ninja]
|
|
6
6
|
scope = "toolchain"
|
|
@@ -176,7 +176,7 @@ dependencies = [
|
|
|
176
176
|
|
|
177
177
|
[glib-networking]
|
|
178
178
|
name = "glib-networking"
|
|
179
|
-
version = "
|
|
179
|
+
version = "af4b017028e695528951c749a7096e96359521d8"
|
|
180
180
|
url = "https://github.com/frida/glib-networking.git"
|
|
181
181
|
options = [
|
|
182
182
|
"-Dgnutls=disabled",
|
|
@@ -372,6 +372,7 @@ options = [
|
|
|
372
372
|
when = """ \
|
|
373
373
|
machine.config != 'mingw' \
|
|
374
374
|
and not machine.arch.startswith('mips') \
|
|
375
|
+
and not machine.arch.startswith('powerpc') \
|
|
375
376
|
and machine.os != 'qnx' \
|
|
376
377
|
"""
|
|
377
378
|
name = "V8"
|
package/releng/devkit.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from collections import OrderedDict
|
|
2
2
|
import itertools
|
|
3
|
+
import locale
|
|
3
4
|
import os
|
|
4
5
|
from pathlib import Path
|
|
5
6
|
import re
|
|
@@ -438,9 +439,9 @@ def call_pkgconfig(argv, meson_config):
|
|
|
438
439
|
|
|
439
440
|
|
|
440
441
|
def detect_compiler_argument_syntax(meson_config):
|
|
441
|
-
if subprocess.run(meson_config["c"],
|
|
442
|
+
if "Microsoft " in subprocess.run(meson_config["c"],
|
|
442
443
|
capture_output=True,
|
|
443
|
-
encoding=
|
|
444
|
+
encoding=locale.getpreferredencoding()).stderr:
|
|
444
445
|
return "msvc"
|
|
445
446
|
|
|
446
447
|
return "unix"
|
package/releng/env_generic.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from collections import OrderedDict
|
|
2
2
|
from configparser import ConfigParser
|
|
3
|
+
import locale
|
|
3
4
|
from pathlib import Path
|
|
4
5
|
import shutil
|
|
5
6
|
import subprocess
|
|
@@ -74,7 +75,7 @@ def init_machine_config(machine: MachineSpec,
|
|
|
74
75
|
env=environ,
|
|
75
76
|
stdout=subprocess.PIPE,
|
|
76
77
|
stderr=subprocess.STDOUT,
|
|
77
|
-
encoding=
|
|
78
|
+
encoding=locale.getpreferredencoding())
|
|
78
79
|
if process.returncode == 0:
|
|
79
80
|
mcfg = ConfigParser()
|
|
80
81
|
mcfg.read(machine_file)
|
|
@@ -258,8 +259,8 @@ def detect_linker_flavor(cc: list[str]) -> str:
|
|
|
258
259
|
linker_version = subprocess.run(cc + ["-Wl,--version"],
|
|
259
260
|
stdout=subprocess.PIPE,
|
|
260
261
|
stderr=subprocess.STDOUT,
|
|
261
|
-
encoding=
|
|
262
|
-
if
|
|
262
|
+
encoding=locale.getpreferredencoding()).stdout
|
|
263
|
+
if "Microsoft " in linker_version:
|
|
263
264
|
return "msvc"
|
|
264
265
|
if "GNU ld " in linker_version:
|
|
265
266
|
return "gnu-ld"
|
package/releng/machine_spec.py
CHANGED
|
@@ -246,6 +246,8 @@ CPU_FAMILIES = {
|
|
|
246
246
|
|
|
247
247
|
"mipsel": "mips",
|
|
248
248
|
"mips64el": "mips64",
|
|
249
|
+
|
|
250
|
+
"powerpc": "ppc"
|
|
249
251
|
}
|
|
250
252
|
|
|
251
253
|
CPU_TYPES = {
|
|
@@ -284,7 +286,9 @@ BIG_ENDIAN_ARCHS = {
|
|
|
284
286
|
"armbe8",
|
|
285
287
|
"mips",
|
|
286
288
|
"mips64",
|
|
289
|
+
"ppc",
|
|
290
|
+
"ppc64",
|
|
287
291
|
"s390x",
|
|
288
292
|
}
|
|
289
293
|
|
|
290
|
-
TARGET_TRIPLET_ARCH_PATTERN = re.compile(r"^(i.86|x86_64|arm(v\w+)?|aarch64|mips\w*|s390x)$")
|
|
294
|
+
TARGET_TRIPLET_ARCH_PATTERN = re.compile(r"^(i.86|x86_64|arm(v\w+)?|aarch64|mips\w*|powerpc|s390x)$")
|