You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If running it _isn't_ this simple, then open a GitHub issue describing why not, and we'll try to improve things.
39
39
40
-
Note that at present, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64. If other architectures are of interest to you, open a GitHub issue so that we can gauge demand.
40
+
Note that at present, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64 and aarch64. If other architectures are of interest to you, open a GitHub issue so that we can gauge demand.
41
41
42
42
If distributing shared libraries, polyfill-glibc can also be used to inspect dependencies (with the `--print-imports` and `--print-exports` operations), and to modify how shared libraries are loaded (with the `--set-rpath`, `--set-runpath`, and `--set-soname` operations). Consult [the documentation](docs/Command_line_options.md) for a full list of command line options.
Copy file name to clipboardexpand all lines: docs/Command_line_options.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Flags that change the effect of other actions: `--output`, `--dry`, `--page-size
20
20
21
21
Takes as an argument a glibc version, for example `--target-glibc=2.17`. The action identifies all dependencies that the file has on glibc functions and variables newer than the specified version, and employs [various strategies](How_does_polyfill_glibc_work.md) to remove those dependencies.
22
22
23
-
Note that `--target-glibc` is currently only implemented for x86_64 files. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest.
23
+
Note that `--target-glibc` is currently only implemented for x86_64 files and aarch64 files. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest.
24
24
25
25
If there are any strong dependencies that `--target-glibc` cannot remove, then it'll fail and report the problematic dependencies, for example:
26
26
@@ -174,7 +174,7 @@ The `--polyfill-cfi` flag controls whether CFI is provided for statically linked
174
174
175
175
In some cases, `--target-glibc` and `--rename-dynamic-symbols` can cause additional executable code to be statically linked into the file. For some people, this can be undesirable, and so `--create-polyfill-so` and `--use-polyfill-so` are provided instead, with the effect of putting the additional executable code in a separate shared object and then dynamically linking against that shared object.
176
176
177
-
If the `--create-polyfill-so` flag is specified, then the behaviour of `--rename-dynamic-symbols` is modified: whenever `polyfill::NAME` is given as the new symbol name (regardless of whether the old symbol name is present), then `NAME@POLYFILL` is added as an _export_ to the file, with the statically linked code as the implementation of that export. The behaviour of `--target-glibc` is similarly modified: any statically linked code that _could_ be used to remove a problematic dependency (regardless of whether the problem is present) is added an _export_ to the file. The `--create-polyfill-so` flag is usually used in combination with the special input filename `empty:x86_64`, which denotes an empty ELF file. Accordingly, an invocation like the following can be used to create a shared object called `polyfills.so` with all the code required to polyfill back to glibc 2.3.2:
177
+
If the `--create-polyfill-so` flag is specified, then the behaviour of `--rename-dynamic-symbols` is modified: whenever `polyfill::NAME` is given as the new symbol name (regardless of whether the old symbol name is present), then `NAME@POLYFILL` is added as an _export_ to the file, with the statically linked code as the implementation of that export. The behaviour of `--target-glibc` is similarly modified: any statically linked code that _could_ be used to remove a problematic dependency (regardless of whether the problem is present) is added an _export_ to the file. The `--create-polyfill-so` flag is usually used in combination with the special input filename `empty:x86_64` or `empty:aarch64`, which denotes an empty ELF file. Accordingly, an invocation like the following can be used to create a shared object called `polyfills.so` with all the code required to polyfill back to glibc 2.3.2:
Copy file name to clipboardexpand all lines: docs/Limitations.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
## Limitations of polyfill-glibc
2
2
3
-
Currently, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest. Note that lower level operations, for example `--set-rpath`, are implemented for all architectures.
3
+
Currently, the `--target-glibc` operation of polyfill-glibc is only implemented for x86_64 and aarch64. If other architectures are of interest to you, open a GitHub issue so that we can gauge interest. Note that lower level operations, for example `--set-rpath`, are implemented for all architectures.
4
4
5
5
Polyfills have not yet been written for every glibc function. If you're hitting such a case, open a GitHub issue so that we can gauge interest.
0 commit comments