dry_run(false),
help(false),
verbose(1),
- chrome(false),
+ show_progress(false),
build_file("Build"),
jobs(1),
conf_all(false),
getopt.add_option('A', "conf-all", conf_all, GetOpt::NO_ARG);
getopt.add_option('B', "build-all", build_all, GetOpt::NO_ARG);
getopt.add_option('C', "chdir", work_dir, GetOpt::REQUIRED_ARG);
+ getopt.add_option('P', "progress", show_progress, GetOpt::NO_ARG);
getopt.add_option('W', "what-if", what_if, GetOpt::REQUIRED_ARG);
- getopt.add_option( "chrome", chrome, GetOpt::NO_ARG);
getopt.add_option( "conf-only", conf_only, GetOpt::NO_ARG);
getopt.add_option( "full-paths", full_paths, GetOpt::NO_ARG);
//getopt.add_option( "makefile", create_makefile, GetOpt::NO_ARG);
else if(!clean && !create_makefile)
build=true;
- const list<string> &args=getopt.get_args();
- for(list<string>::const_iterator i=args.begin(); i!=args.end(); ++i)
+ const vector<string> &args=getopt.get_args();
+ for(vector<string>::const_iterator i=args.begin(); i!=args.end(); ++i)
{
unsigned equal=i->find('=');
if(equal!=string::npos)
" -A, --conf-all Apply configuration to all packages.\n"
" -B, --build-all Build all targets unconditionally.\n"
" -C, --chdir DIR Change to DIR before doing anything else.\n"
+ " -P, --progress Display progress while building.\n"
" -W, --what-if FILE Pretend that FILE has changed.\n"
- " --chrome Use extra chrome to print status.\n"
" --conf-only Stop after configuring packages.\n"
" --full-paths Output full paths in analysis.\n"
//" --makefile Create a makefile for this package.\n"
vector<Action *> actions;
- if(chrome)
- cout<<"0 targets built\n";
unsigned count=0;
bool fail=false;
Action *action=tgt->build();
if(action)
actions.push_back(action);
+
+ if(show_progress)
+ {
+ cout<<count<<" of "<<total<<" targets built\033[1G";
+ cout.flush();
+ }
}
else if(actions.empty())
finish=true;
if(status>=0)
{
++count;
- if(chrome)
- {
- cout<<"\e["<<actions.size()+1<<'A';
- cout<<count<<" targets built\n";
- if(i)
- cout<<"\e["<<i<<"B";
- cout<<"\e[M";
- if(i<actions.size()-1)
- cout<<"\e["<<actions.size()-i-1<<"B";
- cout.flush();
- }
+
delete actions[i];
actions.erase(actions.begin()+i);
if(status>0)
}
}
+ if(show_progress)
+ cout<<"\033[K";
if(fail)
cout<<"Build failed\n";
+ else if(show_progress)
+ cout<<"Build complete\n";
return fail?1:0;
}