]> Git Repo - uclibc-ng.git/commitdiff
Forgot to commit the arch cleanup changes to m68k
authorJoakim Tjernlund <[email protected]>
Fri, 18 Mar 2005 07:44:24 +0000 (07:44 -0000)
committerJoakim Tjernlund <[email protected]>
Fri, 18 Mar 2005 07:44:24 +0000 (07:44 -0000)
ldso/ldso/m68k/dl-startup.h

index 7cd89fecae55e81765635f9f465fe76f5b372b99..07857cf382badd116f969506b6c89896c0a8d08d 100644 (file)
@@ -4,8 +4,15 @@
  * Copyright (C) 2005 by Erik Andersen <[email protected]>
  */
 
-/* For m68k we do not need any special setup so go right to _dl_boot() */
-#define DL_BOOT(X) __attribute_used__ void _dl_boot (X)
+asm(
+    "  .text\n"
+    "  .globl  _start\n"
+    "  .type   _start,@function\n"
+    "_start:\n"
+    "  .set    _start,_dl_start\n"
+    "  .size   _start,.-_start\n"
+    "  .previous\n"
+);
 
 /* Get a pointer to the argv array.  On many platforms this can be just
  * the address if the first argument, on other platforms we need to
This page took 0.033086 seconds and 4 git commands to generate.