diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-23 20:11:01 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-23 20:11:01 +0200 | 
| commit | c21a9c55382b930ffeea5042aa7e0dd48b453c4a (patch) | |
| tree | 27f67680e28b1a6c8cd07eeac077257fe956b678 | |
| parent | e4c0168e4e8834aea0cfe06b8b2fc8bd63f591bb (diff) | |
Fix args.
| -rw-r--r-- | configure.cc | 2 | ||||
| -rw-r--r-- | libcppbuild.cc | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.cc b/configure.cc index e84f808..1979936 100644 --- a/configure.cc +++ b/configure.cc @@ -55,7 +55,7 @@ int configure(int argc, char* argv[])  	}  	dg::Options opt; -	int key{256}; +	int key{128};  	std::string build_arch;  	std::string host_arch; diff --git a/libcppbuild.cc b/libcppbuild.cc index 6d1d6e5..9a15880 100644 --- a/libcppbuild.cc +++ b/libcppbuild.cc @@ -49,7 +49,7 @@ int main(int argc, char* argv[])  	bool list_files{false};  	dg::Options opt; -	int key{256}; +	int key{128};  	opt.add("jobs", required_argument, 'j',  	        "Number of parallel jobs. (default: cpucount * 2 - 1 )",  | 
