Lines Matching refs:to

3 ## How to use
5 This document is explaining how to use cmake with CMSIS-DSP.
6 (It is not official so not supported. The official way to build is to use the CMSIS-Pack).
8 The example arm_variance_f32 in folder Examples/ARM/arm_variance_f32 has been modified to also
13 To build example arm_variance_f32 with cmake, you need to create a build folder where the build wil…
17 Once you are in the build folder, you can use cmake to generate the Makefiles.
19 The cmake command is requiring several arguments. For instance, to build for m7 with AC6 compiler:
21 cmake -DCMAKE_PREFIX_PATH="path to compiler (folder containing the bin folder)" \
28 DCMAKE_PREFIX_PATH is the path to the compiler toolchain. This folder should contain the bin folder…
30 ROOT is pointing to the root CMSIS folder (the one containing CMSIS and Device).
32 PLATFORM is used to select the boot code for the example. In example below, Fast Model (FVP) is sel…
39 The final .. is the path to the directory containing the CMakeLists.txt of the variance example.
40 Since the build folder is assumed to be created in arm_variance_examples then the path to CMakeList…
42 To build for A5, you need to change DCMAKE_TOOLCHAIN_FILE and ARM_CPU:
47 To build for A5 with Neon acceleration, you need to add:
53 Once cmake has generated the makefiles, you can use a GNU Make to build.
68 If you want to build only the CMSIS-DSP library and don't link with any boot code then you'll need
80 # Define the path to CMSIS-DSP (ROOT is defined on command line when using cmake)
83 # Add DSP folder to module path
99 cmake -DROOT="path to CMSIS Root" \
100 -DCMAKE_PREFIX_PATH="path to compiler (folder containing the bin folder)" \
118 Some new compilations symbols have been introduced to avoid including all the tables if they are no…
127 …is required, there are other symbols but it is not always easy to know which ones need to be enabl…
129 …ompilation symbols. If you don't use cmake, you can just look at fft.cmake to see which compilatio…
131 For instance, if you want to use the arm_rfft_fast_f32, in fft.cmake you'll see an option RFFT_FAST…
133 We see that following symbols need to be enabled :
140 In addition to that, ARM_DSP_CONFIG_TABLES must be enabled and finally ARM_FFT_ALLOW_TABLES must al…
142 …orm functions are included in the build, then by default all flags related to FFT tables are ignor…
151 Someone from the community has written a [Python script to help](https://gist.github.com/rosek86/d0…