
make
文章平均质量分 58
hushui
Coding Since 1998
展开
-
patchelf for aosp9/10 build on Centos7/Glibc<2.18
#!/usr/bin/bash # Ugly workaround for building on systems with older GLIBC versions (<2.18) on Centos7/RHEL7.x etc ## ld-loader updates to prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.19-4.8 # Before you patch, put GLIBC2.19 into prebuilts/gcc/li.原创 2021-01-21 16:51:55 · 442 阅读 · 0 评论 -
buildroot/make help
Refer tohttps://buildroot.org/downloads/manual/manual.html lake@localhost:~/aw_t3/aw_t3_grid_3.10-v1.0$ ls -l total 36 drwxr-xr-x 8 lake sudo 4096 Nov 1 23:14 brandy -rwxr-xr-x 1 lake sudo 134 N...原创 2019-12-17 09:43:37 · 738 阅读 · 1 评论 -
CMake build 32bit on 64bit platform
+# Uncomment the following line to debug the make system: +set(CMAKE_VERBOSE_MAKEFILE ON) diff --git a/CMakeLists.txt b/CMakeLists.txt +add_compile_options("-m32") +add_link_options("-m32")原创 2019-11-27 12:12:51 · 671 阅读 · 0 评论 -
Cmake/prefix PATH
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr . && make all install Example lake@ShSwDev2:~/local/Future-Back/lua-cjson-2.1.0$ /home/lake/usr/bin/cmake -S . -DCMAKE_INSTALL_PREFIX:PATH=~/us...原创 2019-11-07 14:21:39 · 3826 阅读 · 0 评论 -
cmake/make/AosoBuild verbose print
Linux/make $make V=1 For CMake, usemake VERBOSE=1; for GNU autotoolsmake V=1 Note: make -s (silent) willsuppress all make log. CMake cmake --build build -v >>>CMakeLists.txt ...原创 2019-10-24 10:38:17 · 336 阅读 · 0 评论 -
make/Makefile verbose
1. Linux for example kernel make V=1 For CMake, usemake VERBOSE=1; for GNU autotoolsmake V=1 This depends on your make program. Note: make -s (silent) willsuppress all make log. 2. make ...原创 2019-07-23 10:18:53 · 2139 阅读 · 0 评论 -
Guide to predefined macros in C++ compilers (gcc, clang, msvc etc.)
https://blog.kowalczyk.info/article/j/guide-to-predefined-macros-in-c-compilers-gcc-clang-msvc-etc..html Software • About Me Home/ Guide to predefined macros in C++ compilers (gcc, clang, msvc ...转载 2019-07-23 10:38:35 · 224 阅读 · 0 评论