stand: -fno-common fixes for !x86 loaders

- beriloader: archsw is declared extern and defined elsewhere
- ofwloader: ofw_elf{,64} are defined in elf_freebsd.c and
  ppc64_elf_freebsd.c respectively
- ubldr: syscall_ptr is defined in start.S for whichever ubldr platform is
  building

-fno-common will become the default in GCC10/LLVM11.

MFC after:	3 days
This commit is contained in:
Kyle Evans 2020-04-07 12:57:50 +00:00
parent 8883b17065
commit ed648b3f39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=359688
3 changed files with 3 additions and 5 deletions

View File

@ -59,8 +59,6 @@ struct devsw *devsw[] = {
NULL
};
struct arch_switch archsw;
struct file_format *file_formats[] = {
&beri_elf,
NULL

View File

@ -97,8 +97,8 @@ struct netif_driver *netif_drivers[] = {
* rather than reading the file go first.
*/
struct file_format ofw_elf;
struct file_format ofw_elf64;
extern struct file_format ofw_elf;
extern struct file_format ofw_elf64;
struct file_format *file_formats[] = {
&ofw_elf,

View File

@ -56,7 +56,7 @@
#endif
int syscall(int, int *, ...);
void *syscall_ptr;
extern void *syscall_ptr;
int api_parse_cmdline_sig(int argc, char **argv, struct api_signature **sig);
int api_search_sig(struct api_signature **sig);