From 211b47e98d6347011b0da0744789bf734a5c0bbe Mon Sep 17 00:00:00 2001 From: Cristian-Vasile Achim <66278390+csccva@users.noreply.github.com> Date: Fri, 14 Jun 2024 12:53:04 +0300 Subject: [PATCH] Update 01_modules_make_batch_jobs.md --- .../docs/01_modules_make_batch_jobs.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/computer-platforms/docs/01_modules_make_batch_jobs.md b/computer-platforms/docs/01_modules_make_batch_jobs.md index 645767a6a..36db42135 100644 --- a/computer-platforms/docs/01_modules_make_batch_jobs.md +++ b/computer-platforms/docs/01_modules_make_batch_jobs.md @@ -115,7 +115,7 @@ cc main.c -o main
- In practice programs be separated into several files + In practice programs are separated into several files
$\Rightarrow$ complicated dependency structures - Building large programs takes time - could we just rebuild the parts that changed? @@ -131,6 +131,17 @@ cc main.c -o main # Compiling and linking: possible problems + +- Programs should usually be separated into several files +
$\Rightarrow$ complicated dependency structures +- Building large programs takes time + - could we just rebuild the parts that changed? +- Having different options when building + - debug versions, enabling/disabling features, etc. +
+ +# Compiling and linking: possible problems + - Programs should usually be separated into several files
$\Rightarrow$ complicated dependency structures - Building large programs takes time