Home
last modified time | relevance | path

Searched refs:resolvedPath (Results 1 – 3 of 3) sorted by relevance

/external/toolchain-utils/compiler_wrapper/
Dcommand.go76 resolvedPath := filepath.Join(path, cmd)
77 if _, err := os.Lstat(resolvedPath); err == nil {
78 return resolvedPath, nil
Dcompiler_wrapper.go20 if resolvedPath, err := resolveAgainstPathEnv(env, inputCmd.Path); err == nil {
22 Path: resolvedPath,
/external/llvm-project/lld/lib/Driver/
DDarwinLdDriver.cpp1057 llvm::Optional<StringRef> resolvedPath; in parse() local
1073 resolvedPath = ctx.searchLibrary(arg->getValue()); in parse()
1074 if (!resolvedPath) { in parse()
1080 canonicalizePath(resolvedPath.getValue())); in parse()
1082 addFile(resolvedPath.getValue(), ctx, globalWholeArchive, upward); in parse()
1087 resolvedPath = ctx.findPathForFramework(arg->getValue()); in parse()
1088 if (!resolvedPath) { in parse()
1094 canonicalizePath(resolvedPath.getValue())); in parse()
1096 addFile(resolvedPath.getValue(), ctx, globalWholeArchive, upward); in parse()