This commit is contained in:
Timerix 2024-08-09 22:05:34 +03:00
parent 646773f574
commit 1576021cf7
5 changed files with 7 additions and 4 deletions

View File

@ -1 +1 @@
2.1.3 2.1.4

View File

@ -1,3 +1,6 @@
# v2.1.4
+ added `-Wl,-rpath` argument generation in `link()`. It forces ld to link to local shared library in `OUTDIR`
# v2.1.3 # v2.1.3
+ added `DEP_OTHER_OUT_FILES` to dependency configs + added `DEP_OTHER_OUT_FILES` to dependency configs
+ if `PRESERVE_OUT_DIRECTORY_STRUCTURE=true` then `DEP_DYNAMIC_OUT_FILES` and `DEP_OTHER_OUT_FILES` are copied to `OUTDIR` preserving directory structure (example_dir/lib1.so -> $OUTDIR/example_dir/lib1.so) + if `PRESERVE_OUT_DIRECTORY_STRUCTURE=true` then `DEP_DYNAMIC_OUT_FILES` and `DEP_OTHER_OUT_FILES` are copied to `OUTDIR` preserving directory structure (example_dir/lib1.so -> $OUTDIR/example_dir/lib1.so)

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
INSTALLED_CBUILD_VERSION=2.1.3 INSTALLED_CBUILD_VERSION=2.1.4
# set \t size to 4 spaces # set \t size to 4 spaces
tabs 4 tabs 4

View File

@ -9,7 +9,7 @@ function load_config {
TASK="$2" TASK="$2"
local quiet=$3 local quiet=$3
myprint "${BLUE}loading config '$(realpath $project_config_path)'" myprint "${BLUE}loading config ${WHITE}'$(realpath $project_config_path)'"
if [ -z "$project_config_path" ]; then if [ -z "$project_config_path" ]; then
error "config path is null" error "config path is null"

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
CBUILD_VERSION=2.1.3 CBUILD_VERSION=2.1.4
CONFIG_VERSION=1 CONFIG_VERSION=1
PROJECT="%PROJECT_NAME%" PROJECT="%PROJECT_NAME%"