Searched refs:make (Results 1 – 25 of 1075) sorted by relevance
12345678910>>...43
| /Linux-v5.4/tools/build/tests/ |
| D | run.sh | 5 make -C ex V=1 clean > ex.out 2>&1 6 make -C ex V=1 >> ex.out 2>&1 13 make -C ex V=1 clean > /dev/null 2>&1 18 make -C ex V=1 clean > ex.out 2>&1 21 make -rR -C ex V=1 ex.o >> ex.out 2>&1 22 make -rR -C ex V=1 ex.i >> ex.out 2>&1 23 make -rR -C ex V=1 ex.s >> ex.out 2>&1 35 make -C ex V=1 clean > /dev/null 2>&1 40 make -C ex V=1 clean > ex.out 2>&1 44 make -C ex V=1 CFLAGS=-DINCLUDE >> ex.out 2>&1 [all …]
|
| /Linux-v5.4/samples/bpf/ |
| D | README.rst | 24 make headers_install 27 level directory, that the make system automatically pickup first. 35 make samples/bpf/ 39 It is also possible to call make from this directory. This will just 40 hide the the invocation of make as above with the appended "/". 61 $ make -j $(getconf _NPROCESSORS_ONLN) 63 It is also possible to point make to the newly compiled 'llc' or 64 'clang' command via redefining LLC or CLANG on the make command line:: 66 make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang 71 environment variables before calling make. This will direct make to build [all …]
|
| /Linux-v5.4/Documentation/translations/zh_CN/process/ |
| D | submit-checklist.rst | 51 10) 使用 ``make checkstack`` 和 ``make namespacecheck`` 并修复他们发现的任何 60 不需要,但也可以。)使用 ``make htmldocs`` 或 ``make pdfdocs`` 检查 85 20) 检查是否全部通过 ``make headers_check`` 。 90 22) 新添加的代码已经用 ``gcc -W`` 编译(使用 ``make EXTRA-CFLAGS=-W`` )。这
|
| D | 4.Coding.rst | 168 请注意,并非所有编译器警告都默认启用。使用“make EXTRA_CFLAGS=-W”构建内核以 214 然后可以通过在make命令中添加“C=1”在代码上运行它。 219 “make coccicheck”将运行这些语义补丁并报告发现的任何问题。有关详细信息,请参阅
|
| /Linux-v5.4/tools/perf/ |
| D | Makefile | 55 @printf ' BUILD: Doing '\''make \033[33m-j'$(JOBS)'\033[m'\'' parallel build\n' 70 $(make) 90 $(make) -j1 103 …@$(MAKE) SHUF=1 -f tests/make REUSE_FEATURES_DUMP=1 MK=Makefile SET_PARALLEL=1 --no-print-director… 110 $(make)
|
| /Linux-v5.4/Documentation/dev-tools/ |
| D | kselftest.rst | 31 $ make -C tools/testing/selftests 35 $ make -C tools/testing/selftests run_tests 39 $ make kselftest 51 $ make O=/tmp/kselftest kselftest 55 $ export KBUILD_OUTPUT=/tmp/kselftest; make kselftest 61 Kselftest supports "summary" option to make it easier to understand the test 68 $ make summary=1 kselftest 73 You can use the "TARGETS" variable on the make command line to specify 78 $ make -C tools/testing/selftests TARGETS=ptrace run_tests 82 $ make TARGETS="size timers" kselftest [all …]
|
| D | coccinelle.rst | 47 make 51 sudo make install 106 To make a report for every semantic patch, run the following command:: 108 make coccicheck MODE=report 112 make coccicheck MODE=patch 128 make coccicheck MODE=report V=1 136 make coccicheck MODE=report J=4 148 value is propagated back, the return value of the ``make coccicheck`` 154 The optional make variable COCCI can be used to check a single 160 make coccicheck COCCI=<my_SP.cocci> MODE=patch [all …]
|
| /Linux-v5.4/Documentation/admin-guide/ |
| D | README.rst | 84 the backup files (some-file-name~ or some-file-name.orig), and make sure 110 make mrproper 131 Using the option ``make O=output/dir`` allows you to specify an alternate 141 make O=/home/name/build/kernel menuconfig 142 make O=/home/name/build/kernel 143 sudo make O=/home/name/build/kernel modules_install install 146 used for all invocations of make. 155 new version with minimal work, use ``make oldconfig``, which will 160 "make config" Plain text interface. 162 "make menuconfig" Text based color menus, radiolists & dialogs. [all …]
|
| /Linux-v5.4/Documentation/translations/ja_JP/ |
| D | SubmitChecklist | 59 10: 'make checkstack' と 'make namespacecheck' を利用し、問題が発見されたら 60 修正してください。'make checkstack' は明示的に問題を示しませんが、どれか 66 そして、'make htmldocs' もしくは 'make mandocs' を利用して追記した 91 19: 'make headers_check'を実行して全く問題がないことを確認してください。
|
| /Linux-v5.4/Documentation/powerpc/ |
| D | mpc52xx.rst | 13 # make lite5200_defconfig 14 # make uImage 25 # make lite5200_defconfig 27 # make zImage.initrd 28 # make
|
| /Linux-v5.4/Documentation/ia64/ |
| D | xen.rst | 33 2. # make world 35 3. # make install-tools 43 5. make initrd for Dom0/DomU:: 45 # make -C linux-2.6.18-xen.hg ARCH=ia64 modules_install \ 55 1. make file:: 96 FYI, virt-manager can also make a disk image for guest OS. 97 It's GUI tools and easy to make it. 162 4. make kernel with pv_ops:: 164 # make oldconfig 165 # make [all …]
|
| /Linux-v5.4/Documentation/translations/zh_CN/ |
| D | sparse.txt | 78 make 79 make install 86 用"make C=1"命令来编译内核,会对所有重新编译的 C 文件使用 sparse 工具。 87 或者使用"make C=2"命令,无论文件是否被重新编译都会对其使用 sparse 工具。 90 make 的可选变量 CHECKFLAGS 可以用来向 sparse 工具传递参数。编译系统会自
|
| /Linux-v5.4/tools/perf/tests/ |
| D | make | 7 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile 8 @echo "Testing Makefile.perf"; $(MAKE) -sf tests/make MK=Makefile.perf SET_PARALLEL=1 SET_O=1 12 @echo "Testing Makefile"; $(MAKE) -sf tests/make MK=Makefile $@ 53 # we need some IS_(32/64) flag to make this generic 62 # standard single make variable specified 319 @echo "- make -C <kernelsrc> $(PARALLEL_OPT) $(K_O_OPT) tools/perf" 321 (make -C ../.. $(PARALLEL_OPT) $(K_O_OPT) tools/perf) > $@ 2>&1 && \ 325 @echo "- make -C <kernelsrc>/tools $(PARALLEL_OPT) $(K_O_OPT) perf" 327 (make -C ../../tools $(PARALLEL_OPT) $(K_O_OPT) perf) > $@ 2>&1 && \ 331 @echo "- make -C lib"; [all …]
|
| /Linux-v5.4/tools/build/tests/ex/ |
| D | Makefile | 15 make -f $(srctree)/tools/build/Makefile.build dir=. $@ 18 make $(build)=ex 21 make $(build)=libex
|
| /Linux-v5.4/security/apparmor/ |
| D | Makefile | 102 $(call cmd,make-caps) 105 $(call cmd,make-rlim) 109 $(call cmd,make-af) 110 $(call cmd,make-sock)
|
| /Linux-v5.4/tools/testing/selftests/rcutorture/bin/ |
| D | configinit.sh | 33 make clean > $resdir/Make.clean 2>&1 35 make $TORTURE_DEFCONFIG > $resdir/Make.defconfig.out 2>&1 39 yes '' | make oldconfig > $resdir/Make.oldconfig.out 2> $resdir/Make.oldconfig.err
|
| /Linux-v5.4/tools/testing/selftests/bpf/ |
| D | test_bpftool_build.sh | 48 make $J -s $* >/dev/null 61 make -s clean 75 make $J -s $ARGS ${@: -1}=$TMPDIR/ >/dev/null
|
| /Linux-v5.4/Documentation/kbuild/ |
| D | kconfig.rst | 2 Kconfig make config 5 This file contains some assistance for using `make *config`. 7 Use "make help" to list all of the possible configuration targets. 19 "make oldconfig" won't necessarily produce a working new kernel 26 make listnewconfig 32 make oldconfig 69 KCONFIG_ALLCONFIG == "" or KCONFIG_ALLCONFIG == "1", `make *config` 86 KCONFIG_ALLCONFIG=custom-notebook.config make allnoconfig 90 KCONFIG_ALLCONFIG=mini.config make allnoconfig 94 make KCONFIG_ALLCONFIG=mini.config allnoconfig [all …]
|
| D | modules.rst | 49 complexity, so one only has to type "make" to build the module. This is 63 An alternative is to use the "make" target "modules_prepare." This will 64 make sure the kernel contains the information required. The target 70 executed to make module versioning work. 77 $ make -C <path_to_kernel_src> M=$PWD 84 $ make -C /lib/modules/`uname -r`/build M=$PWD 89 $ make -C /lib/modules/`uname -r`/build M=$PWD modules_install 96 make -C $KDIR M=$PWD 100 "make" will actually change to the specified directory 112 When building an external module, only a subset of the "make" [all …]
|
| /Linux-v5.4/tools/build/Documentation/ |
| D | Build.txt | 27 $ make -f tools/build/Makefile.build srctree=$(KSRC) dir=$(DIR) obj=$(OBJECT) 83 $ make -f tools/build/Makefile.build dir=. obj=ex 84 $ make -f tools/build/Makefile.build dir=. obj=libex 112 to make it easier to invoke build like: 113 make $(build)=ex 166 $ make util/map.o # objects 167 $ make util/map.i # preprocessor 168 $ make util/map.s # assembly
|
| /Linux-v5.4/ |
| D | .gitignore | 66 # RPM spec file (make rpm-pkg) 71 # Debian directory (make deb-pkg) 76 # Snap directory (make snap-pkg) 81 # tar directory (make tar*-pkg)
|
| /Linux-v5.4/Documentation/core-api/ |
| D | symbol-namespaces.rst | 27 kernel. As of today, modules that make use of symbols exported into namespaces, 54 and kernel/module.c make use the namespace at build time or module load time, 132 (along with other module meta data). To make the life of module authors (and 133 subsystem maintainers) easier, a script and make target is available to fixup 136 $ make nsdeps 141 - `make` 143 - run `make nsdeps` to add the import to the correct code location 146 Again, `make nsdeps` will eventually add the missing namespace imports for 150 - `make` (preferably with an allmodconfig to cover all in-kernel 153 - run `make nsdeps` to add the import to the correct code location
|
| /Linux-v5.4/tools/build/ |
| D | Build.include | 46 # (needed for make) 48 # (needed for make) 51 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1))))) 63 $(fixdep) $(depfile) $@ '$(make-cmd)' > $(dot-target).tmp; \ 69 printf '\n%s\n' 'cmd_$@ := $(make-cmd)' >> $(dot-target).cmd) 84 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd)
|
| /Linux-v5.4/Documentation/process/ |
| D | submit-checklist.rst | 52 10) Use ``make checkstack`` and ``make namespacecheck`` and fix any problems 63 ``make htmldocs`` or ``make pdfdocs`` to check the 89 21) Check that it all passes ``make headers_check``. 98 ``make EXTRA_CFLAGS=-W``). This will generate lots of noise, but is good 101 24) Tested after it has been merged into the -mm patchset to make sure
|
| /Linux-v5.4/tools/testing/ktest/examples/ |
| D | crosstests.conf | 78 MAKE_CMD = PATH=/usr/local/gcc-${GCC_VER}-nolibc/${CROSS}/bin:$PATH CROSS_COMPILE=${CROSS}- make AR… 176 MAKE_CMD = make ARCH=um SUBARCH=x86_64 181 MAKE_CMD = make ARCH=i386 186 MAKE_CMD = make ARCH=x86_64
|
12345678910>>...43