commit | 2a06e248f5c8b7c86c7dd48eed7f6d5e87288457 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Apr 13 17:12:20 2022 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Apr 13 19:13:49 2022 +0200 |
tree | 7ef0d45981b28fef3b141b21121207c24253b9c5 | |
parent | b12966af1006be8d4438ee1ca39c2541a1f2a4f9 [diff] |
BUILD: initcall: mark the __start_i_* symbols as weak, not global Just like for previous fix, these symbols are marked ".globl" during their declaration, but their later mention uses __attribute__((weak)), so it's better to only use ".weak" during the declaration so that the symbol's class does not change. No need to backport this unless someone reports build issues.