Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
d292c7ec
Commit
d292c7ec
authored
Jan 30, 2024
by
Brendan Shanks
Committed by
Alexandre Julliard
Feb 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Refactor find_tool().
parent
b1ab51b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
6 deletions
+4
-6
utils.c
tools/winebuild/utils.c
+4
-6
No files found.
tools/winebuild/utils.c
View file @
d292c7ec
...
...
@@ -244,12 +244,10 @@ struct strarray find_tool( const char *name, const char * const *names )
names
++
;
}
if
(
!
file
)
{
if
(
cc_command
.
count
)
file
=
find_clang_tool
(
cc_command
,
name
);
if
(
!
file
&&
!
(
file
=
find_binary
(
"llvm"
,
name
)))
file
=
find_clang_tool
(
empty_strarray
,
strmake
(
"llvm-%s"
,
name
));
}
if
(
!
file
&&
cc_command
.
count
)
file
=
find_clang_tool
(
cc_command
,
name
);
if
(
!
file
)
file
=
find_binary
(
"llvm"
,
name
);
if
(
!
file
)
file
=
find_clang_tool
(
empty_strarray
,
strmake
(
"llvm-%s"
,
name
));
if
(
!
file
)
fatal_error
(
"cannot find the '%s' tool
\n
"
,
name
);
strarray_add
(
&
ret
,
file
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment