⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 make-j

📁 distcc编译器的源代码.好像是readhat公司开发的.
💻
字号:
#! /bin/sh# make-j script from Alexandre Oliva <aoliva@redhat.com> for use with distcc# Tests which machines are up, and runs Make with concurrency set# appropriately.hostlist=$DISTCC_HOSTSdistcc_port=4200DISTCC_HOSTS=count=0for h in $hostlist; do  echo trying $h... >&2  if test "x$h" = xlocalhost || nc -z $h $distcc_port; then    echo added $h... >&2    DISTCC_HOSTS=`echo $DISTCC_HOSTS $h` # remove leading blank    count=`expr $count + 1`  fidoneexport DISTCC_HOSTSexec make -j $count ${1+"$@"}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -