Lines Matching +full:docs +full:- +full:flang +full:- +full:html

4 ---
6 ---
9 The [LLVM Test Suite](https://github.com/llvm/llvm-test-suite) is a
11 first-time users read through [LLVM Test Suite
12 Guide](https://llvm.org/docs/TestSuiteGuide.html) which describes the
15 ## Running the LLVM test-suite with Fortran
19 cmake -G "Ninja" -DCMAKE_C_COMPILER=<path to C compiler> \
20 -DCMAKE_CXX_COMPILER=<path to C++ compiler> \
21 -DCMAKE_Fortran_COMPILER=<path to Fortran compiler> \
22 -DTEST_SUITE_COLLECT_CODE_SIZE:STRING=OFF \
23 -DTEST_SUITE_SUBDIRS:STRING="Fortran" \
24 -DTEST_SUITE_FORTRAN:STRING=ON \
25 -DTEST_SUITE_LIT=<path to llvm-lit> \
26 <path to llvm-test-suite>
29 This will configure the test-suite to run only the Fortran tests which
31 alongside the Fortran tests omit the `-DTEST_SUITE_SUBDIRS` CMake
34 If your Fortran compiler is Flang, there are a couple of other things you need
36 [here](https://github.com/llvm/llvm-test-suite/blob/main/Fortran/gfortran/README.md#usage).
51 codes, require support for little-endian/big-endian byte swapping
60 cmake -G "Ninja" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
61 -DCMAKE_Fortran_COMPILER=gfortran \
62 -DTEST_SUITE_COLLECT_CODE_SIZE:STRING=OFF \
63 -DTEST_SUITE_SUBDIRS:STRING="External/SPEC" \
64 -DTEST_SUITE_FORTRAN:STRING=ON \
65 -DTEST_SUITE_SPEC2017_ROOT=<path to SPEC directory> ..
72 instructions described [above](#running-the-llvm-test-suite-with-fortran).
73 There are additional configure-time options that can be used with the gfortran
75 [`Fortran/gfortran/README.md`](https://github.com/llvm/llvm-test-suite/tree/main/Fortran/gfortran/R…