gem5: remove build variant from output directory

I noticed that it is not very elegant, since there are many other variants
which are not included, e.g. Linux kernel build and random configs.

Also it makes the path longer for something that is not the most common use case.

Users can use run ID instead when they want separate output directories.
This commit is contained in:
Ciro Santilli
2018-08-05 09:00:02 +01:00
parent 0dfbd93afe
commit b8c853ee5e
2 changed files with 13 additions and 13 deletions

2
common
View File

@@ -82,7 +82,7 @@ set_common_vars() {
common_gem5_m5term="${common_gem5_out_dir}/m5term"
common_gem5_build_dir="${common_gem5_out_dir}/build"
common_gem5_system_dir="${common_gem5_out_dir}/system"
common_gem5_run_dir="${out_arch_dir}/gem5/${gem5_variant}/${common_run_id}"
common_gem5_run_dir="${out_arch_dir}/gem5/${common_run_id}"
common_gem5_termout_file="${common_gem5_run_dir}/termout.txt"
common_m5out_dir="${common_gem5_run_dir}/m5out"
if "$gem5"; then