[llvm] b4f8daa - [arm builtin crosscompile docs] alphabetize flags, no behavior change

Nico Weber via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 25 07:44:30 PST 2021


Author: Nico Weber
Date: 2021-02-25T10:44:16-05:00
New Revision: b4f8daa5ec6c7c5a84fe6d36859f1ff38780ffa2

URL: https://github.com/llvm/llvm-project/commit/b4f8daa5ec6c7c5a84fe6d36859f1ff38780ffa2
DIFF: https://github.com/llvm/llvm-project/commit/b4f8daa5ec6c7c5a84fe6d36859f1ff38780ffa2.diff

LOG: [arm builtin crosscompile docs] alphabetize flags, no behavior change

Added: 
    

Modified: 
    llvm/docs/HowToCrossCompileBuiltinsOnArm.rst

Removed: 
    


################################################################################
diff  --git a/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst b/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst
index 72dfea4eb687..4122aafe87e0 100644
--- a/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst
+++ b/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst
@@ -59,22 +59,22 @@ options.
 
 * ``path/to/compiler-rt``
 * ``-G Ninja``
-* ``-DCOMPILER_RT_BUILD_BUILTINS=ON``
-* ``-DCOMPILER_RT_BUILD_SANITIZERS=OFF``
-* ``-DCOMPILER_RT_BUILD_XRAY=OFF``
-* ``-DCOMPILER_RT_BUILD_LIBFUZZER=OFF``
-* ``-DCOMPILER_RT_BUILD_PROFILE=OFF``
-* ``-DCMAKE_C_COMPILER=/path/to/clang``
 * ``-DCMAKE_AR=/path/to/llvm-ar``
+* ``-DCMAKE_ASM_COMPILER_TARGET="arm-linux-gnueabihf"``
+* ``-DCMAKE_ASM_FLAGS="build-c-flags"``
+* ``-DCMAKE_C_COMPILER=/path/to/clang``
+* ``-DCMAKE_C_COMPILER_TARGET="arm-linux-gnueabihf"``
+* ``-DCMAKE_C_FLAGS="build-c-flags"``
+* ``-DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld"``
 * ``-DCMAKE_NM=/path/to/llvm-nm``
 * ``-DCMAKE_RANLIB=/path/to/llvm-ranlib``
-* ``-DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld"``
-* ``-DCMAKE_C_COMPILER_TARGET="arm-linux-gnueabihf"``
-* ``-DCMAKE_ASM_COMPILER_TARGET="arm-linux-gnueabihf"``
+* ``-DCOMPILER_RT_BUILD_BUILTINS=ON``
+* ``-DCOMPILER_RT_BUILD_LIBFUZZER=OFF``
+* ``-DCOMPILER_RT_BUILD_PROFILE=OFF``
+* ``-DCOMPILER_RT_BUILD_SANITIZERS=OFF``
+* ``-DCOMPILER_RT_BUILD_XRAY=OFF``
 * ``-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON``
 * ``-DLLVM_CONFIG_PATH=/path/to/llvm-config``
-* ``-DCMAKE_C_FLAGS="build-c-flags"``
-* ``-DCMAKE_ASM_FLAGS="build-c-flags"``
 
 The ``build-c-flags`` need to be sufficient to pass the C-make compiler check,
 compile compiler-rt, and if you are running the tests, compile and link the


        


More information about the llvm-commits mailing list