You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Makefiles: Simplify auto-derivation of compiler flags
This commit simplifies the logic around automatically
setting architecture-specific compiler flags from
```
if (arch == A)
{
if (!cross)
...
if (cross == X)
...
elif (cross == Y)
...
}
elif (arch == B)
{
if (!cross)
...
if (cross == X)
...
elif (cross == Y)
...
}
```
to
```
if !cross
{
if (arch == A)
...
elif (arch == B)
...
...
}
else {
if (cross == X)
...
elif (cross == Y)
...
}
```
It also adds further architecture flags for RV64 and PPC64LE.
Signed-off-by: Hanno Becker <[email protected]>
0 commit comments