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
Currently, we do not do consistency checks for the passed emulation options. For example, -m <emulation> option simply overrides the other emulation options such as -mcpu <cpu> and -march <arch>. We should error-out if emulation options are inconsistent with each other, for example: ld.eld -o a.out /dev/null -m v68 -mcpu hexagonv99.
The text was updated successfully, but these errors were encountered:
Clang does error out when we mix riscv/arm/aarch target with incorrect -mcpu. However, it does not error out when mixing different hexagon cpu versions.
Currently, we do not do consistency checks for the passed emulation options. For example,
-m <emulation>
option simply overrides the other emulation options such as-mcpu <cpu>
and-march <arch>
. We should error-out if emulation options are inconsistent with each other, for example:ld.eld -o a.out /dev/null -m v68 -mcpu hexagonv99
.The text was updated successfully, but these errors were encountered: