diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-23 17:33:54 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-23 17:33:54 +0000 |
commit | 100cc918a944bd0d40ecb2afc635f2b76d7cb577 (patch) | |
tree | f2fc212c79c516ff5273b6e22262d44521c81794 /libc/sysdeps/linux/alpha/crt0.S | |
parent | 1bad089bf9f29240e11216eab1109bd6a7a952fd (diff) |
Hopefully this is correct
Diffstat (limited to 'libc/sysdeps/linux/alpha/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/alpha/crt0.S | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/alpha/crt0.S b/libc/sysdeps/linux/alpha/crt0.S index 1f93a4dc4..2e2941042 100644 --- a/libc/sysdeps/linux/alpha/crt0.S +++ b/libc/sysdeps/linux/alpha/crt0.S @@ -37,6 +37,18 @@ .globl _start .ent _start, 0 .type _start,@function +#if defined L_crt0 || ! defined __UCLIBC_CTOR_DTOR__ + .type __uClibc_main,@function +#else + .weak _init + .weak _fini + .type __uClibc_start_main,@function +#endif +/* Stick in a dummy reference to main(), so that if an application + * is linking when the main() function is in a static library (.a) + * we can be sure that main() actually gets linked in */ + .type main,@function + _start: .frame fp, 0, zero mov zero, fp |