From bb18a30f8908ae7ace9be76ab79fe851f56753ef Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Thu, 14 Mar 2024 14:26:54 +0100 Subject: [PATCH] arch/posix cmake: Replace native_posix w native_sim and use hwmv2 names Let's fix the error messages: * native_posix is in general replaced with native_sim * let's use hwmv2 names Signed-off-by: Alberto Escolar Piedras --- arch/posix/Linux.aarch64.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/posix/Linux.aarch64.cmake b/arch/posix/Linux.aarch64.cmake index 6354c3efbc9..c428fef864a 100644 --- a/arch/posix/Linux.aarch64.cmake +++ b/arch/posix/Linux.aarch64.cmake @@ -18,7 +18,7 @@ if (CONFIG_64BIT) if (${WORDSIZE} STREQUAL "32") message(FATAL_ERROR "CONFIG_64BIT=y but this Aarch64 machine has a 32-bit userspace.\n" - "If you were targeting native_posix_64, target native_posix instead.\n" + "If you were targeting native_sim/native/64, target native_sim instead.\n" "Otherwise, be sure to define CONFIG_64BIT appropriately.\n" ) endif() @@ -27,7 +27,7 @@ else () if (${WORDSIZE} STREQUAL "64") message(FATAL_ERROR "CONFIG_64BIT=n but this Aarch64 machine has a 64-bit userspace.\n" - "If you were targeting native_posix, target native_posix_64 instead.\n" + "If you were targeting native_sim, target native_sim/native/64 instead.\n" "Otherwise, be sure to define CONFIG_64BIT appropriately.\n" ) endif()