Skip to content

Commit

Permalink
#224 Clean script/move echo statements
Browse files Browse the repository at this point in the history
  • Loading branch information
singhd789 committed Dec 18, 2024
1 parent e4de828 commit 60b7ce6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fre/make/create_compile_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def compile_create(yamlfile,platform,target,jobs,parallel,execute,verbose):
name = yamlfile.split(".")[0]
nparallel = parallel
jobs = str(jobs)
run = execute

if verbose:
logging.basicCOnfig(level=logging.INFO)
Expand Down Expand Up @@ -79,8 +78,9 @@ def compile_create(yamlfile,platform,target,jobs,parallel,execute,verbose):
fremakeBuild.writeBuildComponents(c)
fremakeBuild.writeScript()
fremakeBuildList.append(fremakeBuild)
# click.echo("\nCompile script created at " + bldDir + "/compile.sh" + "\n")
if run:

if execute:
click.echo("\nCompile script created at " + bldDir + "/compile.sh" + "\n")
if baremetalRun:
pool = Pool(processes=nparallel) # Create a multiprocessing Pool
pool.map(buildBaremetal.fremake_parallel,fremakeBuildList) # process data_inputs iterable with pool
Expand Down

0 comments on commit 60b7ce6

Please sign in to comment.