Home
last modified time | relevance | path

Searched full:linker (Results 1 – 25 of 2062) sorted by relevance

12345678910>>...83

/third_party/libbpf/src/
Dlinker.c3 * BPF static linker
158 static int init_output_elf(struct bpf_linker *linker, const char *file);
160 static int linker_load_obj_file(struct bpf_linker *linker, const char *filename,
169 static int linker_append_sec_data(struct bpf_linker *linker, struct src_obj *obj);
170 static int linker_append_elf_syms(struct bpf_linker *linker, struct src_obj *obj);
171 static int linker_append_elf_sym(struct bpf_linker *linker, struct src_obj *obj,
173 static int linker_append_elf_relos(struct bpf_linker *linker, struct src_obj *obj);
174 static int linker_append_btf(struct bpf_linker *linker, struct src_obj *obj);
175 static int linker_append_btf_ext(struct bpf_linker *linker, struct src_obj *obj);
177 static int finalize_btf(struct bpf_linker *linker);
[all …]
/third_party/cJSON/tests/unity/extras/fixture/
Drakefile_helper.rb76 command = tackit($cfg['linker']['path'])
77 options = if $cfg['linker']['options'].nil?
80 squash('', $cfg['linker']['options'])
82 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
85 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
92 linker = build_linker_fields
93 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
94 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
95 $cfg['linker']['bin_files']['prefix'] + ' ' +
96 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/unity/extras/fixture/
Drakefile_helper.rb78 command = tackit($cfg['linker']['path'])
79 options = if $cfg['linker']['options'].nil?
82 squash('', $cfg['linker']['options'])
84 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
87 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
94 linker = build_linker_fields
95 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
96 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
97 $cfg['linker']['bin_files']['prefix'] + ' ' +
98 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/unity/extras/memory/
Drakefile_helper.rb83 command = tackit($cfg['linker']['path'])
84 options = if $cfg['linker']['options'].nil?
87 squash('', $cfg['linker']['options'])
89 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
92 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
99 linker = build_linker_fields
100 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
101 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
102 $cfg['linker']['bin_files']['prefix'] + ' ' +
103 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/cJSON/tests/unity/examples/example_3/
Drakefile_helper.rb94 command = tackit($cfg['linker']['path'])
95 options = if $cfg['linker']['options'].nil?
98 squash('', $cfg['linker']['options'])
100 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
103 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
110 linker = build_linker_fields
111 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
112 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
113 $cfg['linker']['bin_files']['prefix'] + ' ' +
114 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/unity/examples/example_3/
Drakefile_helper.rb93 command = tackit($cfg['linker']['path'])
94 options = if $cfg['linker']['options'].nil?
97 squash('', $cfg['linker']['options'])
99 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
102 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
109 linker = build_linker_fields
110 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
111 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
112 $cfg['linker']['bin_files']['prefix'] + ' ' +
113 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/cJSON/tests/unity/test/
Drakefile_helper.rb114 command = tackit($cfg['linker']['path'])
115 options = if $cfg['linker']['options'].nil?
118 squash('', $cfg['linker']['options'])
120 includes = if $cfg['linker']['includes'].nil? || $cfg['linker']['includes']['items'].nil?
123 squash($cfg['linker']['includes']['prefix'], $cfg['linker']['includes']['items'])
130 linker = build_linker_fields
131 cmd_str = "#{linker[:command]}#{linker[:options]}#{linker[:includes]} " +
132 (obj_list.map { |obj| "#{$cfg['linker']['object_files']['path']}#{obj} " }).join +
133 $cfg['linker']['bin_files']['prefix'] + ' ' +
134 $cfg['linker']['bin_files']['destination'] +
[all …]
/third_party/musl/porting/linux/user/ldso/
DREADME.md1 ## Dynamic Linker Namespace
3 The dynamic linker provides the namespace mechanism which is based on configures and apis.
5 …ity so that some shared libraries can be exported by a linker namespace and used by another linker
10 There are two ways to use the linker namespace:
18 Test usages show some examples of using the linker namespace. The file <ld-musl-namespace-arm.ini> …
/third_party/python/Lib/distutils/
Dunixccompiler.py35 # we need some way for outsiders to feed preprocessor/compiler/linker
41 # should just happily stuff them into the preprocessor/compiler/linker
177 linker = self.linker_exe[:]
179 linker = self.linker_so[:]
182 # is used to set up the linker's environment.
187 if os.path.basename(linker[0]) == "env":
189 while '=' in linker[i]:
192 if os.path.basename(linker[i]) == 'ld_so_aix':
194 # script, so we need to adjust our linker index
199 linker[i+offset] = self.compiler_cxx[i]
[all …]
/third_party/openssl/.github/workflows/
Dfuzz-checker.yml32 linker: clang++-12,
41 linker: clang++-12,
60 - name: make with explicit linker
61 if: matrix.fuzzy.linker != ''
62 run: LDCMD=${{ matrix.fuzzy.linker }} make -s -j4
63 - name: make sans explicit linker
64 if: matrix.fuzzy.linker == ''
/third_party/glslang/Test/baseResults/
Dmains1.frag.out6 0:? Linker Objects
13 0:? Linker Objects
28 0:? Linker Objects
39 0:? Linker Objects
61 0:? Linker Objects
68 0:? Linker Objects
DnoMain.vert.out6 0:? Linker Objects
21 0:? Linker Objects
33 0:? Linker Objects
42 0:? Linker Objects
/third_party/selinux/libsepol/tests/
Dtest-linker.c21 /* This is where the linker tests should go, including:
29 #include "test-linker.h"
33 #include "test-linker-roles.h"
34 #include "test-linker-types.h"
35 #include "test-linker-cond-map.h"
63 if (test_load_policy(&linkedbase, POLICY_BASE, mls, "test-linker", policies[BASEMOD])) in linker_test_init()
66 if (test_load_policy(&basenomods, POLICY_BASE, mls, "test-linker", policies[BASEMOD])) in linker_test_init()
77 if (test_load_policy(modules[i], POLICY_MOD, mls, "test-linker", policies[i])) in linker_test_init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Linker/
DLinker.h1 //===- Linker.h - Module Linker Interface -----------------------*- C++ -*-===//
13 #include "llvm/Linker/IRMover.h"
24 class Linker {
34 Linker(Module &M);
41 /// Passing InternalizeCallback will have the linker call the function with
/third_party/skia/third_party/externals/expat/expat/conftools/
Dax-append-link-flags.m411 # For every FLAG1, FLAG2 it is checked whether the linker works with the
14 # If FLAGS-VARIABLE is not specified, the linker's flags (LDFLAGS) is
15 # used. During the check the flag is always added to the linker's flags.
17 # If EXTRA-FLAGS is defined, it is added to the linker's default flags
19 # EXTRA-FLAGS FLAG". This can for example be used to force the linker to
/third_party/flutter/skia/third_party/externals/sdl/debian/
Dsdl2-config.113 is a tool that is used to configure and determine the compiler and linker
32 Print the linker flags that are necessary to link a program that uses SDL.
35 Print the linker flags that are necessary to statically link a program that uses SDL.
38 Print the linker flags that are necessary to link a library that uses SDL.
43 Print the linker flags that are necessary to link an SDL-using object that
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/
DLinkModules.cpp1 //===- lib/Linker/LinkModules.cpp - Module Linker Implementation ----------===//
9 // This file implements the LLVM module linker.
14 #include "llvm-c/Linker.h"
21 #include "llvm/Linker/Linker.h"
42 /// callback is that the linker cannot call internalizeModule without
43 /// creating a circular dependency between IPO and the linker.
52 bool shouldOverrideFromSrc() { return Flags & Linker::OverrideFromSrc; } in shouldOverrideFromSrc()
53 bool shouldLinkOnlyNeeded() { return Flags & Linker::LinkOnlyNeeded; } in shouldLinkOnlyNeeded()
58 /// Should we have mover and linker error diag info?
572 Linker::Linker(Module &M) : Mover(M) {} in Linker() function in Linker
[all …]
/third_party/gn/src/gn/
Dfunction_toolchain.cc294 Linker tools: in RunToolchain()
295 "alink": Linker for static libraries (archives) in RunToolchain()
296 "solink": Linker for shared libraries in RunToolchain()
297 "link": Linker for executables in RunToolchain()
333 Valid for: linker tools in RunToolchain()
346 Valid for: linker tools in RunToolchain()
401 Valid for: Linker tools except "alink"
418 Valid for: Linker tools
436 Valid for: Linker tools except "alink"
439 that are embedded in the linker output.
[all …]
/third_party/flutter/skia/third_party/externals/libpng/scripts/
Dlibpng-config-body.in16 --L_opts print linker "-L" flags for dynamic linking
17 --R_opts print dynamic linker "-R" or "-rpath" flags
18 --ldopts print linker options
19 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs)
/third_party/skia/third_party/externals/libpng/scripts/
Dlibpng-config-body.in16 --L_opts print linker "-L" flags for dynamic linking
17 --R_opts print dynamic linker "-R" or "-rpath" flags
18 --ldopts print linker options
19 --ldflags print linker flags (ldopts, L_opts, R_opts, and libs)
/third_party/flutter/skia/src/ports/
DSkTLS_win.cpp42 #pragma comment(linker, "/INCLUDE:_tls_used")
43 #pragma comment(linker, "/INCLUDE:skia_tls_callback")
47 #pragma comment(linker, "/INCLUDE:__tls_used")
48 #pragma comment(linker, "/INCLUDE:_skia_tls_callback")
/third_party/rust/crates/cxx/book/src/build/
Dother.md52 Rust-generated code into your existing C++ toolchain linker. Instead you need to
55 * Use `rustc` as the final linker. Pass any non-Rust libraries using `-L
60 * Use your C++ linker. In this case, you first need to use `rustc` and/or
62 foreign linker invocation.
69 Passing Rust `rlib`s directly into your non-Rust linker is not supported (but
/third_party/libsnd/m4/
Dax_append_link_flags.m411 # For every FLAG1, FLAG2 it is checked whether the linker works with the
14 # If FLAGS-VARIABLE is not specified, the linker's flags (LDFLAGS) is
15 # used. During the check the flag is always added to the linker's flags.
17 # If EXTRA-FLAGS is defined, it is added to the linker's default flags
19 # EXTRA-FLAGS FLAG". This can for example be used to force the linker to
/third_party/libabigail/tests/data/test-diff-filter/
Dtest31-pr18535-libstdc++-4.9.2.so__gmon_start__ _ITM_deregisterTMCloneTable __aeabi_unwind_cpp_pr0 _ITM_registerTMCloneTable __cxa_finalize _Jv_RegisterClasses _ZSt20__throw_length_errorPKc _ZNSs4_Rep20_S_empty_rep_storageE __gxx_personality_v0 _ZNSi6sentryC1ERSib _ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate __cxa_begin_catch __cxa_rethrow __cxa_end_catch __cxa_end_cleanup _ZTIN10__cxxabiv115__forced_unwindE _ZNKSt12__basic_fileIcE7is_openEv wmemcpy wmemmove ...
/third_party/python/Doc/extending/
Dwindows.rst72 object file (:file:`.so`), the linker may find that it doesn't know where an
73 identifier is defined. The linker will look for it in the object files in the
79 basically used only to reassure the linker that a certain identifier is legal,
80 and will be present in the program when the DLL is loaded. So the linker uses
88 linker for :file:`B.so` and :file:`C.so`; that would cause it to be included
91 linker for B and C. :file:`A.lib` does not contain code; it just contains
112 When creating DLLs in Windows, you must pass :file:`pythonXY.lib` to the linker.

12345678910>>...83