| /src/contrib/arm-optimized-routines/string/ |
| H A D | Dir.mk | 7 B := build/string 22 string-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h)) 25 build/lib/libstringlib.so \ 26 build/lib/libstringlib.a \ 29 build/bin/test/memcpy \ 30 build/bin/test/memmove \ 31 build/bin/test/memset \ 32 build/bin/test/memchr \ 33 build/bin/test/memrchr \ 34 build/bin/test/memcmp \ [all …]
|
| /src/usr.bin/bmake/tests/execution/joberr/ |
| H A D | expected.stdout.1 | 1 Error: build failed 3 Error: build failed 5 Error: build failed 7 Error: build failed 9 Error: build failed 11 Error: build failed 13 Error: build failed 15 Error: build failed 17 Error: build failed 19 Error: build failed [all …]
|
| /src/contrib/nvi/ |
| H A D | INSTALL.md | 3 …chray/nvi2/wiki/Porting) in the Wiki. This document is an overview of the build process that allow… 8 - Ninja build system; 19 Nvi2 uses CMake build system generator. By specifying "Ninja Multi-Config" as the build system to g… 22 cmake -G "Ninja Multi-Config" -B build 25 Now `build` becomes your build directory to hold the artifacts. To build nvi2 in Debug mode, run 28 ninja -C build 31 Upon finishing, the nvi2 executable will be available as `build/Debug/nvi`. To launch it in `ex` mo… 34 ln -s nvi build/Debug/ex 37 and run `./build/Debug/ex` rather than `./build/Debug/nvi`. 39 To build nvi2 in Release mode, use the following command instead: [all …]
|
| /src/contrib/kyua/model/ |
| H A D | test_program_test.cpp | 126 .build(); in check_ctor_and_getters() 129 .build(); in check_ctor_and_getters() 133 model::test_cases_map_builder().add("foo", tc_md).build()); in check_ctor_and_getters() 147 .build(); in check_ctor_and_getters() 150 .build(); in check_ctor_and_getters() 176 const model::test_case test_case("main", model::metadata_builder().build()); in check_find_ok() 180 model::metadata_builder().build(), in check_find_ok() 181 model::test_cases_map_builder().add(test_case).build()); in check_find_ok() 211 model::metadata_builder().build(), in check_find_missing() 212 model::test_cases_map_builder().add("main").build()); in check_find_missing() [all …]
|
| H A D | test_case_test.cpp | 51 .build(); in ATF_TEST_CASE_BODY() 70 .build(); in ATF_TEST_CASE_BODY() 82 .build(); in ATF_TEST_CASE_BODY() 88 .build(); in ATF_TEST_CASE_BODY() 97 .build(); in ATF_TEST_CASE_BODY() 114 .build(); in ATF_TEST_CASE_BODY() 119 .build(); in ATF_TEST_CASE_BODY() 127 .build(); in ATF_TEST_CASE_BODY() 136 const model::test_case tc1("name", model::metadata_builder().build()); in ATF_TEST_CASE_BODY() 149 .build(); in ATF_TEST_CASE_BODY() [all …]
|
| H A D | metadata_test.cpp | 49 const model::metadata md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 108 .build(); in ATF_TEST_CASE_BODY() 125 .build(); in ATF_TEST_CASE_BODY() 129 .build(); in ATF_TEST_CASE_BODY() 145 .build(); in ATF_TEST_CASE_BODY() 151 .build(); in ATF_TEST_CASE_BODY() 158 .build(); in ATF_TEST_CASE_BODY() 166 .build(); in ATF_TEST_CASE_BODY() 217 .build(); in ATF_TEST_CASE_BODY() 285 .build(); in ATF_TEST_CASE_BODY() [all …]
|
| /src/contrib/arm-optimized-routines/networking/ |
| H A D | Dir.mk | 7 B := build/networking 18 networking-includes := $(patsubst $(S)/%,build/%,$(wildcard $(S)/include/*.h)) 21 build/lib/libnetworking.so \ 22 build/lib/libnetworking.a \ 25 build/bin/test/chksum 46 build/lib/libnetworking.so: $(networking-lib-objs:%.o=%.os) 49 build/lib/libnetworking.a: $(networking-lib-objs) 54 build/bin/test/%: $(B)/test/%.o build/lib/libnetworking.a 57 build/include/%.h: $(S)/include/%.h 60 build/bin/%.sh: $(S)/test/%.sh [all …]
|
| /src/contrib/arm-optimized-routines/math/ |
| H A D | Dir.mk | 30 math-build-dir := build/math 58 math-includes := $(patsubst $(math-src-dir)/%,build/%,$(wildcard $(math-src-dir)/include/*.h)) 61 build/lib/libmathlib.so \ 62 build/lib/libmathlib.a \ 65 build/bin/mathtest \ 66 build/bin/mathbench \ 67 build/bin/mathbench_libc \ 68 build/bin/runulp.sh \ 69 build/bin/ulp \ 72 build/bin/rtest \ [all …]
|
| /src/sys/contrib/openzfs/config/ |
| H A D | kernel.m4 | 7 dnl # Setup the kernel build environment. 35 dnl # which interfaces are available. By invoking the kernel build system 313 dnl # source (source) and prebuilt (build) files. Additionally, there are 314 dnl # `source` and `build` symlinks in `/lib/modules/$(KERNEL_VERSION)` 326 dnl # - `/lib/modules/$(uname -r)/{source,build}` respectively, if exist. 328 dnl # - If only `/lib/modules/$(uname -r)/build` exists, it is assumed 329 dnl # to be both source and build directory. 333 dnl # `build` symlinks/directories. If module directory contains only 334 dnl # `build` component, it is assumed to be both source and build 339 dnl # to `sort -V` is assumed to be both source and build directory. [all …]
|
| /src/contrib/lib9p/ |
| H A D | GNUmakefile | 52 BUILD_DIR := build 53 LIB_OBJS := $(addprefix build/,$(LIB_SRCS:.c=.o)) 58 all: build $(LIB) $(SERVER) 61 cc -dynamiclib $^ -o build/$@ 64 cc $< -o build/$(SERVER) -Lbuild/ -l9p 67 rm -rf build 69 build: target 70 mkdir build 71 mkdir build/sbuf 72 mkdir build/transport [all …]
|
| /src/crypto/openssl/Configurations/ |
| H A D | README-design.md | 7 The unified scheme takes all its data from the `build.info` files seen 9 needed to build end product files from diverse sources. See the 10 section on `build.info` files below. 12 From the information in `build.info` files, `Configure` builds up an 14 stored in configdata.pm, found at the top of the build tree (which may 20 build-file templates. See the section on build-file templates further 23 build.info files 26 As mentioned earlier, `build.info` files are meant to hold the minimum 27 information needed to build output files, and therefore only (with a 31 as object files are rarely directly referred to in `build.info` files (and [all …]
|
| /src/sys/contrib/dev/ral/ |
| H A D | Makefile | 9 }') | ${CC} -o build -x c - 10 (sed 's/^/# /' LICENSE; ./build | uuencode rt2561s.fw) > ${.TARGET} 18 }') | ${CC} -o build -x c - 19 (sed 's/^/# /' LICENSE; ./build | uuencode rt2561.fw) > ${.TARGET} 27 }') | ${CC} -o build -x c - 28 (sed 's/^/# /' LICENSE; ./build | uuencode rt2661.fw) > ${.TARGET} 36 }') | ${CC} -o build -x c - 37 (sed 's/^/# /' LICENSE; ./build | uuencode rt2860.fw) > ${.TARGET} 40 rm -f build build.c ${FILES}
|
| /src/contrib/ntp/ |
| H A D | flock-build | 43 if [ ! -r sntp/libevent/build-aux/config.guess ] ; then 63 echo flock-build running on $i? check LIST, skipping 86 ./build $SIG $PARSE $STD $BUILD_ARGS & 89 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4 94 ./build $SIG $PARSE $STD --disable-debugging --disable-saveconfig $BUILD_ARGS & 97 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4 100 ./build $SIG $PARSE $STD --without-crypto --enable-c99-snprintf --enable-leap-smear $BUILD_ARGS & 103 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4 106 …./build $SIG $STD --disable-all-clocks --disable-autokey --without-sntp --disable-thread-su… 109 echo \`date -u '+%H:%M:%S'\` $i started build \$COUNT of 4 [all …]
|
| /src/contrib/kyua/engine/ |
| H A D | requirements_test.cpp | 52 const model::metadata md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 63 .build(); in ATF_TEST_CASE_BODY() 77 .build(); in ATF_TEST_CASE_BODY() 94 .build(); in ATF_TEST_CASE_BODY() 110 .build(); in ATF_TEST_CASE_BODY() 125 .build(); in ATF_TEST_CASE_BODY() 139 .build(); in ATF_TEST_CASE_BODY() 156 .build(); in ATF_TEST_CASE_BODY() 172 .build(); in ATF_TEST_CASE_BODY() 187 .build(); in ATF_TEST_CASE_BODY() [all …]
|
| H A D | atf_list_test.cpp | 56 const model::metadata exp_md = model::metadata_builder().build(); in ATF_TEST_CASE_BODY() 103 .build(); in ATF_TEST_CASE_BODY() 180 .add("test-case").build(); in ATF_TEST_CASE_BODY() 201 .build()) in ATF_TEST_CASE_BODY() 202 .build(); in ATF_TEST_CASE_BODY() 257 .build()) in ATF_TEST_CASE_BODY() 261 .build()) in ATF_TEST_CASE_BODY() 263 .build(); in ATF_TEST_CASE_BODY() 288 .build()) in ATF_TEST_CASE_BODY() 291 .build()) in ATF_TEST_CASE_BODY() [all …]
|
| /src/sys/contrib/zstd/ |
| H A D | CHANGELOG | 3 build: Build Zstd with `noexecstack` on All Architectures (@felixhandte, #2964) 16 perf: on-demand reduced ZSTD_DCtx state size, using build macro ZSTD_DECODER_INTERNAL_BUFFER, at a … 17 build: allows hiding static symbols in the dynamic library, using build macro, by @skitt 18 build: support for m68k (Motorola 68000's), by @cyan4973 19 build: improved AIX support, by @Helflym 20 build: improved meson unofficial build, by @eli-schwartz 60 build: Dynamic library built multithreaded by default (#2584, @senhuang42) 61 build: Move `zstd_errors.h` and `zdict.h` to `lib/` root (#2597, @terrelln) 62 build: Allow `ZSTDMT_JOBSIZE_MIN` to be configured at compile-time, reduce default to 512KB (#2611,… 63 build: Single file library build script moved to `build/` directory (#2618, @felixhandte) [all …]
|
| /src/contrib/arm-optimized-routines/ |
| H A D | Makefile | 66 build/%.o: $(srcdir)/%.S 69 build/%.o: $(srcdir)/%.c 72 build/%.os: $(srcdir)/%.S 75 build/%.os: $(srcdir)/%.c 79 rm -rf build 84 $(DESTDIR)$(bindir)/%: build/bin/% 87 $(DESTDIR)$(libdir)/%.so: build/lib/%.so 90 $(DESTDIR)$(libdir)/%: build/lib/% 93 $(DESTDIR)$(includedir)/%: build/include/%
|
| /src/contrib/libfido2/.actions/ |
| H A D | build-osx-clang | 13 mkdir build-$T 14 (cd build-$T && ${SCAN} cmake -DCMAKE_BUILD_TYPE=$T ..) 15 ${SCAN} --status-bugs make -j"$(sysctl -n hw.ncpu)" -C build-$T 16 make -C build-$T man_symlink_html 17 make -C build-$T regress 18 sudo make -C build-$T install
|
| H A D | build-linux-clang | 9 SCAN=scan-build${CC#clang} 16 mkdir build-$T 17 (cd build-$T && ${SCAN} --use-cc="${CC}" cmake -DCMAKE_BUILD_TYPE=$T ..) 18 ${SCAN} --use-cc="${CC}" --status-bugs make -j"$(nproc)" -C build-$T 19 make -C build-$T regress 20 sudo make -C build-$T install
|
| H A D | build-linux-i686-w64-mingw32-gcc | 28 mkdir build 29 (cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \ 31 make -j"$(nproc)" -C build 32 sudo make -C build install 54 mkdir build 55 (cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \ 57 make -j"$(nproc)" -C build 58 sudo make -C build install
|
| H A D | build-linux-openssl3-i686-w64-mingw32-gcc | 28 mkdir build 29 (cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \ 31 make -j"$(nproc)" -C build 32 sudo make -C build install 55 mkdir build 56 (cd build && cmake -DCMAKE_TOOLCHAIN_FILE=/tmp/mingw.cmake \ 58 make -C build 2>&1 59 sudo make -C build install
|
| H A D | build-linux-openssl3-clang | 9 SCAN=scan-build${CC#clang} 26 mkdir build-$T 28 (cd build-$T && ${SCAN} --use-cc="${CC}" \ 30 ${SCAN} --use-cc="${CC}" --status-bugs make -C build-$T 31 make -C build-$T regress 32 sudo make -C build-$T install
|
| /src/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VERegisterInfo.cpp | 146 inline MachineInstrBuilder build(const MCInstrDesc &MCID, Register DestReg) { in build() function in __anond0ced7310111::EliminateFrameIndex 149 inline MachineInstrBuilder build(unsigned InstOpc, Register DestReg) { in build() function in __anond0ced7310111::EliminateFrameIndex 150 return build(get(InstOpc), DestReg); in build() 152 inline MachineInstrBuilder build(const MCInstrDesc &MCID) { in build() function in __anond0ced7310111::EliminateFrameIndex 155 inline MachineInstrBuilder build(unsigned InstOpc) { in build() function in __anond0ced7310111::EliminateFrameIndex 156 return build(get(InstOpc)); in build() 213 build(VE::LEAzii, clobber).addImm(0).addImm(0).addImm(Lo_32(Offset)); in prepareReplaceFI() 214 build(VE::ANDrm, clobber).addReg(clobber).addImm(M0(32)); in prepareReplaceFI() 215 build(VE::LEASLrri, clobber) in prepareReplaceFI() 248 build(VE::STrii).addReg(FrameReg).addImm(0).addImm(0).addReg(SrcLoReg); in processSTQ() [all …]
|
| /src/contrib/dialog/package/debian/ |
| H A D | rules | 51 --build=$(DEB_BUILD_GNU_TYPE) \ 65 build: build-stamp target 66 build-stamp: configure-stamp 71 touch build-stamp 79 rm -f configure-stamp build-stamp install-stamp 84 install-stamp: build-stamp 119 binary-indep: build install 123 binary-arch: build install 140 .PHONY: build clean binary-indep binary-arch binary install install-stamp
|
| /src/sys/contrib/dev/mwl/ |
| H A D | Makefile | 9 }') | ${CC} -o build -x c - 10 (sed 's/^/# /' LICENSE; ./build | uuencode mw88W8363.fw) > ${.TARGET} 16 }') | ${CC} -o build -x c - 17 (sed 's/^/# /' LICENSE; ./build | uuencode mwlboot.fw) > ${.TARGET} 20 rm -f build build.c ${FILES}
|