Skip to content

Commit

Permalink
bintr: Use cc instead of gcc by default
Browse files Browse the repository at this point in the history
  • Loading branch information
fwsGonzo committed Jul 6, 2024
1 parent be9aeca commit 75044de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libriscv/tr_compiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ static std::string compiler()
{
const char* cc = getenv("CC");
if (cc) return std::string(cc);
return "gcc";
return "cc";
}
static std::string extra_cflags()
{
Expand Down

0 comments on commit 75044de

Please sign in to comment.