diff options
author | Kay Sievers <kay@vrfy.org> | 2015-06-17 07:23:31 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2015-06-17 07:29:15 +0200 |
commit | aac7c5ed8bc6ffaba417b9c0b87bcf342865431b (patch) | |
tree | 56a22e0da1e8ae4e1313a8432eb06197e719422e /src/libsystemd | |
parent | 3eb3228e583e7e07dc3f2d17ea02dcb06f30fcc0 (diff) |
build-sys: hide magic section variables from exported symbols
https://github.com/systemd/systemd/issues/234
Diffstat (limited to 'src/libsystemd')
-rw-r--r-- | src/libsystemd/sd-bus/bus-error.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libsystemd/sd-bus/bus-error.c b/src/libsystemd/sd-bus/bus-error.c index dac157be16..64a5a972ae 100644 --- a/src/libsystemd/sd-bus/bus-error.c +++ b/src/libsystemd/sd-bus/bus-error.c @@ -70,9 +70,11 @@ BUS_ERROR_MAP_ELF_REGISTER const sd_bus_error_map bus_standard_errors[] = { SD_BUS_ERROR_MAP_END }; -/* GCC maps this magically to the beginning and end of the BUS_ERROR_MAP section */ -extern const sd_bus_error_map __start_BUS_ERROR_MAP[]; -extern const sd_bus_error_map __stop_BUS_ERROR_MAP[]; +/* GCC maps this magically to the beginning and end of the BUS_ERROR_MAP section. + * Hide them; for currently unknown reasons they get exported to the shared libries + * even without being listed in the sym file. */ +extern const sd_bus_error_map __start_BUS_ERROR_MAP[] _hidden_; +extern const sd_bus_error_map __stop_BUS_ERROR_MAP[] _hidden_; /* Additional maps registered with sd_bus_error_add_map() are in this * NULL terminated array */ |