-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Description
Often in Makefile
we can find one line build commands like clang a.c b.c -o res
. Where catch by bear only as compile command. But inside of it command also have link command to binary, that we should use as target.
[
{
"arguments": [
"clang",
"-c",
"-o",
"res",
"a.c"
],
"directory": "/home/utbot/remote/one_command_multi_src",
"file": "a.c"
},
{
"arguments": [
"clang",
"-c",
"-o",
"res",
"b.c"
],
"directory": "/home/utbot/remote/one_command_multi_src",
"file": "b.c"
}
]
Expected behavior
Link command for res
executable
Potential solution
Add to bear functionality that catch link part of command like clang a.c b.c -o res
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingenhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Type
Projects
Status
Todo