Searched refs:linker (Results 1 – 25 of 40) sorted by relevance
12
| /Linux-v5.15/tools/lib/bpf/ |
| D | linker.c | 159 static int init_output_elf(struct bpf_linker *linker, const char *file); 161 static int linker_load_obj_file(struct bpf_linker *linker, const char *filename, 170 static int linker_append_sec_data(struct bpf_linker *linker, struct src_obj *obj); 171 static int linker_append_elf_syms(struct bpf_linker *linker, struct src_obj *obj); 172 static int linker_append_elf_sym(struct bpf_linker *linker, struct src_obj *obj, 174 static int linker_append_elf_relos(struct bpf_linker *linker, struct src_obj *obj); 175 static int linker_append_btf(struct bpf_linker *linker, struct src_obj *obj); 176 static int linker_append_btf_ext(struct bpf_linker *linker, struct src_obj *obj); 178 static int finalize_btf(struct bpf_linker *linker); 179 static int finalize_btf_ext(struct bpf_linker *linker); [all …]
|
| D | Build | 3 btf_dump.o ringbuf.o strset.o linker.o gen_loader.o relo_core.o
|
| D | libbpf.h | 912 LIBBPF_API int bpf_linker__add_file(struct bpf_linker *linker, 915 LIBBPF_API int bpf_linker__finalize(struct bpf_linker *linker); 916 LIBBPF_API void bpf_linker__free(struct bpf_linker *linker);
|
| /Linux-v5.15/scripts/ |
| D | Kconfig.include | 31 # Return y if the linker supports <flag>, n otherwise 40 $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found) 54 # Get the linker name, version, and error out if it is not supported. 56 $(error-if,$(success,test -z "$(ld-info)"),Sorry$(comma) this linker is not supported.)
|
| /Linux-v5.15/arch/ia64/scripts/ |
| D | toolchain-flags | 23 warning: your linker cannot handle cross-segment segment-relative relocations. 24 please upgrade to a newer version (it is safe to use this linker, but
|
| /Linux-v5.15/arch/m68k/kernel/ |
| D | vmlinux-nommu.lds | 3 * vmlinux.lds.S -- master linker script for m68knommu arch 7 * This linker script is equipped to build either ROM loaded or RAM
|
| /Linux-v5.15/tools/bpf/bpftool/ |
| D | gen.c | 978 struct bpf_linker *linker; in do_object() local 989 linker = bpf_linker__new(output_file, NULL); in do_object() 990 if (!linker) { in do_object() 998 err = bpf_linker__add_file(linker, file, NULL); in do_object() 1005 err = bpf_linker__finalize(linker); in do_object() 1013 bpf_linker__free(linker); in do_object()
|
| /Linux-v5.15/arch/xtensa/ |
| D | Kconfig.debug | 14 bool "Disable linker relaxation" 18 The default linker behavior is to combine identical literal
|
| /Linux-v5.15/Documentation/driver-api/media/drivers/ |
| D | pxa_camera.rst | 110 | desc-sg[0] | ... | desc-sg[last] | finisher/linker | 119 - linker: has ddadr= desc-sg[0] of next video buffer, dcmd=0 122 "f" stands for finisher and "l" for linker. 167 replaced by a "linker" to Videobuffer3 (creation of new_link)
|
| /Linux-v5.15/drivers/connector/ |
| D | Kconfig | 4 tristate "Connector - unified userspace <-> kernelspace linker"
|
| /Linux-v5.15/arch/mips/vdso/ |
| D | Kconfig | 2 # the base address of VDSO, the linker will emit a R_MIPS_PC32
|
| /Linux-v5.15/kernel/gcov/ |
| D | Kconfig | 54 which are not linked to the kernel image to prevent linker errors.
|
| /Linux-v5.15/Documentation/kbuild/ |
| D | makefiles.rst | 52 --- 7.9 Preprocessing linker scripts 352 Given that we can control the section order in the linker script, 355 2) vmlinux linker script 357 The linker script for vmlinux is located at 860 It is also possible to specify additional options to the linker. 976 It is also possible to specify additional options to the linker. 1109 Flags used for all invocations of the linker. 1124 the linker when linking the final vmlinux image. 1226 used when linking modules. This is often a linker script. 1232 The linker script with full path. Assigned by the top-level Makefile. [all …]
|
| D | llvm.rst | 81 ``--prefix=<path>`` to search for the GNU assembler and linker. ::
|
| /Linux-v5.15/arch/powerpc/platforms/44x/ |
| D | Kconfig | 306 bool "Enable linker work around for PPC476FPE errata #46" 313 The work around enables the appropriate linker options and
|
| /Linux-v5.15/Documentation/driver-api/dmaengine/ |
| D | pxa_dma.rst | 51 | desc-sg[0] | ... | desc-sg[last] | status updater | finisher/linker | 68 - linker: has ddadr= desc-sg[0] of next transfer, dcmd=0
|
| /Linux-v5.15/arch/x86/boot/compressed/ |
| D | Makefile | 65 LDFLAGS_vmlinux := -pie $(call ld-option, --no-dynamic-linker)
|
| /Linux-v5.15/Documentation/dev-tools/ |
| D | gcov.rst | 190 Compilation aborts during linker step. 195 linker procedure.
|
| /Linux-v5.15/Documentation/process/ |
| D | submit-checklist.rst | 21 ``=n``. No ``gcc`` warnings/errors, no linker warnings/errors.
|
| /Linux-v5.15/Documentation/bpf/libbpf/ |
| D | libbpf_naming_convention.rst | 100 passed to linker.
|
| /Linux-v5.15/Documentation/translations/it_IT/process/ |
| D | submit-checklist.rst | 25 avviso/errore di ``gcc`` e nessun avviso/errore dal linker.
|
| /Linux-v5.15/arch/ |
| D | Kconfig | 1230 format. Requires a compatible linker (LLD supports this feature), as 1267 An arch should select this symbol once all linker sections are explicitly 1268 included, size-asserted, or discarded in the linker scripts. This is 1270 by the linker, since the locations of such sections can change between linker
|
| /Linux-v5.15/arch/m68k/ |
| D | Kconfig.machine | 416 bool "Specify ROM linker regions" 418 Define a ROM region for the linker script. This creates a kernel
|
| /Linux-v5.15/tools/perf/Documentation/ |
| D | perf-dlfilter.txt | 23 a local build and install (refer perf --exec-path), or the dynamic linker
|
| /Linux-v5.15/tools/testing/selftests/bpf/ |
| D | README.rst | 220 Using clang 13 to compile old libbpf which has static linker support,
|
12