Skip to content

Commit 252c432

Browse files
committed
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?
1 parent 876ba58 commit 252c432

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -480,13 +480,13 @@ the LLVM toolchain enables native compilation of the Fortran sources of LAPACK a
480480
481481
4. Navigate to the OpenBLAS source code directory and start building OpenBLAS
482482
by invoking Ninja:
483-
483+
484484
```cmd
485485
cd OpenBLAS
486486
mkdir build
487487
cd build
488-
489-
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
488+
489+
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
490490
491491
ninja -j16
492492
```

0 commit comments

Comments
 (0)