From 252c43265d155f6e14b6879c9fe322afcca6d77c Mon Sep 17 00:00:00 2001 From: Matthew Brett Date: Fri, 24 Jan 2025 12:58:20 +0000 Subject: [PATCH] Fix Windows on ARM build instructions The command as merged uses the compiler target as the compiler path. I have run and tested a build with this command. @Mugundanmcw - is this correct? --- docs/install.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install.md b/docs/install.md index a3174202f..9b0d45a49 100644 --- a/docs/install.md +++ b/docs/install.md @@ -480,13 +480,13 @@ the LLVM toolchain enables native compilation of the Fortran sources of LAPACK a 4. Navigate to the OpenBLAS source code directory and start building OpenBLAS by invoking Ninja: - + ```cmd cd OpenBLAS mkdir build cd build - - cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DTARGET=ARMV8 -DBINARY=64 -DCMAKE_C_COMPILER=clang-cl -DCMAKE_C_COMPILER=arm64-pc-windows-msvc -DCMAKE_ASM_COMPILER=arm64-pc-windows-msvc -DCMAKE_Fortran_COMPILER=flang-new + + cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DTARGET=ARMV8 -DBINARY=64 -DCMAKE_C_COMPILER=clang-cl -DCMAKE_C_COMPILER_TARGET=arm64-pc-windows-msvc -DCMAKE_ASM_COMPILER_TARGET=arm64-pc-windows-msvc -DCMAKE_Fortran_COMPILER=flang-new ninja -j16 ```