Home
last modified time | relevance | path

Searched refs:absWrapperPath (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/toolchain-utils/compiler_wrapper/
H A Dcommand.go155 absWrapperPath, err := getAbsWrapperPath(env, cmd)
161 rootPath = filepath.Join(filepath.Dir(absWrapperPath), cfg.gccRootRelPath)
163 rootPath = filepath.Join(filepath.Dir(absWrapperPath), cfg.clangRootRelPath)
171 absWrapperPath: absWrapperPath,
184 absWrapperPath string member
226 absWrapperPath: builder.absWrapperPath,
H A Dcompiler_wrapper_test.go224 absWrapperPath string
229 absWrapperPath: "/bar/baz",
234 absWrapperPath: "/bar/baz",
239 absWrapperPath: "/bar/baz",
244 absWrapperPath: "/bar/baz",
250 …if result := calculateAndroidWrapperPath(tc.mainBuilderPath, tc.absWrapperPath); result != tc.want…
251 …wrapper path with (%q, %q); got %q, want %q", tc.mainBuilderPath, tc.absWrapperPath, result, tc.wa…
H A Dcompiler_wrapper.go52 func calculateAndroidWrapperPath(mainBuilderPath string, absWrapperPath string) string {
60 basePart := filepath.Base(absWrapperPath) + ".real"
153 mainBuilder.path = calculateAndroidWrapperPath(mainBuilder.path, mainBuilder.absWrapperPath)
252 return compileWithFallback(env, cfg, compilerCmd, mainBuilder.absWrapperPath)
H A Dcompile_with_fallback.go28 func compileWithFallback(env env, cfg *config, originalCmd *command, absWrapperPath string) (exitCo…
99 Path: filepath.Join(prebuiltCompilerPath, filepath.Base(absWrapperPath)),
H A Dclang_flags.go21 clangDir = filepath.Dir(builder.absWrapperPath)