diff options
Diffstat (limited to 'ld/emultempl/crxelf.em')
-rw-r--r-- | ld/emultempl/crxelf.em | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/emultempl/crxelf.em b/ld/emultempl/crxelf.em index b1ff4d4..5c5784f 100644 --- a/ld/emultempl/crxelf.em +++ b/ld/emultempl/crxelf.em @@ -33,12 +33,12 @@ crxelf_after_parse (void) option. This is to emulate the CRTools' method of keeping variables of different alignment in separate sections. */ - config.sort_common = TRUE; + config.sort_common = true; /* Don't create a demand-paged executable, since this feature isn't meaninful in CRX embedded systems. Moreover, when magic_demand_paged is true the link sometimes fails. */ - config.magic_demand_paged = FALSE; + config.magic_demand_paged = false; ldelf_after_parse (); } |