Skip to content

Commit

Permalink
add output for checkout and makefile creation for runfremake
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Mulhall authored and Ryan Mulhall committed Nov 27, 2024
1 parent c52a769 commit 8fa356b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fre/make/runFremake.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def fremake_run(yamlfile,platform,target,parallel,jobs,no_parallel_checkout,exec
freCheckout.writeCheckout(modelYaml.compile.getCompileYaml(),jobs,pc)
freCheckout.finish(pc)
os.chmod(srcDir+"/checkout.sh", 0o744)
print("\nCheckout script created at "+ srcDir + "/checkout.sh \n")
## TODO: Options for running on login cluster?
freCheckout.run()

Expand Down Expand Up @@ -127,6 +128,7 @@ def fremake_run(yamlfile,platform,target,parallel,jobs,no_parallel_checkout,exec
# Loop through components, send component name/requires/overrides for Makefile
for c in fremakeYaml['src']:
freMakefile.addComponent(c['component'],c['requires'],c['makeOverrides'])
print("\nMakefile created at " + bldDir + "/Makefile" + "\n")
freMakefile.writeMakefile()

## Create a list of compile scripts to run in parallel
Expand Down

0 comments on commit 8fa356b

Please sign in to comment.