diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-12-07 17:45:55 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-12-09 13:13:21 +0100 |
commit | 96ed6cb5d345570560750d2a2934757b28aa1c0f (patch) | |
tree | 0c64ab83385febb78aedd9d7b2e828aea22b01e5 /rules | |
parent | c94f309016e0ff06719823f146e4d7872611d607 (diff) | |
download | justbuild-96ed6cb5d345570560750d2a2934757b28aa1c0f.tar.gz |
rules: ldflags have precedence over transitive link args
Diffstat (limited to 'rules')
-rw-r--r-- | rules/CC/EXPRESSIONS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/CC/EXPRESSIONS b/rules/CC/EXPRESSIONS index f719c48d..7beac0a9 100644 --- a/rules/CC/EXPRESSIONS +++ b/rules/CC/EXPRESSIONS @@ -814,8 +814,8 @@ , "$1": { "type": "++" , "$1": - [ {"type": "CALL_EXPRESSION", "name": "link-args-deps"} - , {"type": "var", "name": "private-ldflags"} + [ {"type": "var", "name": "private-ldflags"} + , {"type": "CALL_EXPRESSION", "name": "link-args-deps"} ] } } |