Message ID | 20240308141051.536599-4-thuth@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/arm: Allow compilation without CONFIG_ARM_V7M | expand |
diff --git a/target/arm/Kconfig b/target/arm/Kconfig index bf57d739cd..3fffdcb61b 100644 --- a/target/arm/Kconfig +++ b/target/arm/Kconfig @@ -2,10 +2,6 @@ config ARM bool select ARM_COMPATIBLE_SEMIHOSTING if TCG - # We need to select this until we move m_helper.c and the - # translate.c v7m helpers under ARM_V7M. - select ARM_V7M if TCG - config AARCH64 bool select ARM
Now that we made sure that ARM_V7M code only gets compiled if really needed, we can drop the hard requirement for CONFIG_ARM_V7M in the Kconfig file. Signed-off-by: Thomas Huth <thuth@redhat.com> --- target/arm/Kconfig | 4 ---- 1 file changed, 4 deletions(-)