标签: tools

3 篇文章

Manjaro i3wm Archlinux 安装open VMware Tools 或者 VMware tools 
from--https://www.cnblogs.com/asclepius/p/13833259.html   A : 安装open-vm-tools ------------ 参考:   https://wiki.archlinux.org/index.php/Installing_Arch_Linux_in_VMware     1.安装VMware Tools pacman -S open-vm-tools open-vm-tools-modules 2.安装gtkmm pacman -S gtkmm 3.修复Tools中的60秒BUG nano /usr/lib/systemd/system/vmtoolsd.service 在[service]项的后面增加一行    KillSignal=SIGKILL 4.使vmw…
openwrt添加autoconf-archive
openwrt默认会有autoconf、automake,但是没有autoconf-archive。 在编译外置包时可能需要使用autoconf-archive,以下是添加autoconf-archive步骤。 修改tools/Makefile 修改tools/Makfile添加autoconf-archive编译路径 tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat - tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs zlib + tools-y += m4 libtool autoconf autoconf-archive automake flex bison pkg-config mkl…
thumbnail
谷歌开源项目Chromium的源码获取与项目构建(Win7+vs10/vs13)
2018-06 from--https://www.xuebuyuan.com/3250854.html 从12年那会儿开始获取源码和构建chromium项目都是按照那时候的官方要求用win7 vs2010,相对来说也比较简单,按照步骤来也很快能编译出来。 1.官网的编译配置介绍:http://www.chromium.org/developers/how-tos/build-instructions-windows 2.编译需要的工具:vs2010/sp1,win8sdk,DXSDK,depot_tools 我用的工具都是在这里了:2010CompilerToolsForChrome depot_tools也可以从官方获取:depot_tools (命令行下执行 gclient 它会自动下载安装构建项目解决方案所需要的工具 python,…