summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-08-18 03:48:14 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-08-18 03:48:14 +0000
commit00749acefd9dbbaf1c99b2a2f760b00465d684cc (patch)
treebb00feb80092bfa1076cff16d2462318a5792a1b
parentc7fc697dcf05e3a596292635945b51d1bb1a5b51 (diff)
downloaduClibc-alpine-00749acefd9dbbaf1c99b2a2f760b00465d684cc.tar.bz2
uClibc-alpine-00749acefd9dbbaf1c99b2a2f760b00465d684cc.tar.xz
I don't even want to talk about this.
-rw-r--r--extra/scripts/defs.awk27
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/scripts/defs.awk b/extra/scripts/defs.awk
new file mode 100644
index 000000000..1716fb137
--- /dev/null
+++ b/extra/scripts/defs.awk
@@ -0,0 +1,27 @@
+/^[ ]*\.endp/ { need_endp = 1 }
+/^[ ]*\.end/ { need_end = 1 }
+/^[ ]*\.align/ { if($2 > max) max = $2; }
+
+END {
+ if(need_endp)
+ {
+ print "#define END_INIT .endp _init";
+ print "#define END_FINI .endp _fini";
+ } else if(need_end)
+ {
+ print "#define END_INIT .end _init";
+ print "#define END_FINI .end _fini";
+ }
+ else
+ {
+ print "#define END_INIT";
+ print "#define END_FINI";
+ }
+ if(max)
+ print "#define ALIGN .align", max;
+ else
+ print "#define ALIGN";
+
+ print "#include <libc-symbols.h>";
+ #print "weak_extern (__gmon_start__)";
+}