Restore FreeBSD to use .rodata
In https://github.com/openzfs/zfs/pull/14228 the FreeBSD SECTION_STATIC was set to ".data" instead of ".rodata". This commit just restores it back to .rodata. Reviewed-by: Attila Fülöp <attila@fueloep.org> Reviewed-by: Richard Yao <richard.yao@alumni.stonybrook.edu> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Jorgen Lundman <lundman@lundman.net> Closes #14460
This commit is contained in:
parent
dffd40b3b6
commit
0a5b942d4a
|
@ -36,7 +36,7 @@
|
||||||
#define ENDBR
|
#define ENDBR
|
||||||
|
|
||||||
#define SECTION_TEXT .text
|
#define SECTION_TEXT .text
|
||||||
#define SECTION_STATIC .data
|
#define SECTION_STATIC .rodata
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
#define ENDBR
|
#define ENDBR
|
||||||
|
|
||||||
#define SECTION_TEXT .text
|
#define SECTION_TEXT .text
|
||||||
#define SECTION_STATIC .data
|
#define SECTION_STATIC .rodata
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
Loading…
Reference in New Issue