Displaying 7 results from an estimated 7 matches for "mksignames".
2005 Dec 13
2
Parallel build of dash still fails
Building dash in parallel still fails:
GEN dash/builtins.def
HOSTCC dash/mkinit
HOSTCC dash/mknodes
HOSTCC dash/mksignames
HOSTCC dash/mksyntax
dash/mksignames.c:59: warning: function declaration isn?t a prototype
dash/mksignames.c:365: warning: function declaration isn?t a prototype
dash/mksignames.c:386: warning: function declaration isn?t a prototype
KLIBCCC dash/alias.o
cd dash; \
bison -y -d /home/...
2005 Feb 07
2
tiny patch for klibc 0.198
...0.198/ash/Makefile 2005-02-06 15:56:36.478233705 +0100
@@ -111,8 +111,7 @@
$(OBJ_NODES): nodes.h
$(OBJ_SYNTAX): syntax.h
-nodes.c nodes.h: mknodes.sh nodetypes nodes.c.pat nodes
-nodes:
+nodes.c nodes.h nodes: mknodes.sh nodetypes nodes.c.pat
sh mknodes.sh nodetypes nodes.c.pat .
signames.c: mksignames
diff -ur old/klibc-0.198/utils/Makefile klibc-0.198/utils/Makefile
--- old/klibc-0.198/utils/Makefile 2004-10-26 04:32:13.000000000 +0200
+++ klibc-0.198/utils/Makefile 2005-02-06 16:35:45.967773830 +0100
@@ -10,11 +10,14 @@
insmod uname
STATICPROGS := $(patsubst %,static/%,$(PROGS))
SHAREDPRO...
2020 Mar 28
0
[klibc:master] dash: README.dash: Do all patch filtering with filterdiff
...-N --stdout <changeset>.. \
+ | filterdiff --strip 2 --addoldprefix a/usr/dash/ --addnewprefix b/usr/dash/ \
+ --exclude="*/configure.ac" --exclude="*/ChangeLog" \
+ --exclude="*/dash.1" --exclude="*/Makefile.am" \
+ --exclude="*/mksignames.c" \
> dash.mbox
-Path fixup:
- perl -i -pe 's#^([-+]{3} [ab]/)src/#$1#g' dash.mbox
-
2) Import patches from mailbox:
- git am --directory="usr/dash" --exclude="usr/dash/configure.ac" \
- --exclude="usr/dash/ChangeLog" --exclude="usr/dash/da...
2020 Mar 28
0
[klibc:update-dash] dash: README.dash: Exclude .gitignore when synching
...-35,7 +35,7 @@ HOWTO sync branch:
| filterdiff --strip 2 --addoldprefix a/usr/dash/ --addnewprefix b/usr/dash/ \
--exclude="*/configure.ac" --exclude="*/ChangeLog" \
--exclude="*/dash.1" --exclude="*/Makefile.am" \
- --exclude="*/mksignames.c" \
+ --exclude="*/mksignames.c" --exclude="*/.gitignore" \
> dash.mbox
2) Import patches from mailbox:
2020 Mar 28
0
[klibc:master] dash: README.dash: Change patch sync commands to use mailbox
...mport patches from mailbox:
-2) Import patches on by one
git am --directory="usr/dash" --exclude="usr/dash/configure.ac" \
--exclude="usr/dash/ChangeLog" --exclude="usr/dash/dash.1" \
--exclude="usr/dash/Makefile.am" --exclude="usr/dash/mksignames.c" \
- --whitespace=fix -k -i -s ../dash/000X-foo.patch
+ --whitespace=fix -k -i -s ../dash/dash.mbox
The only changes made are the addition of config.h, Kbuild usage,
the omition of Changelog and manpage and automatic whitespace fixups.
2011 Aug 03
2
Kbuild dash headers generation
...attached patch can be applied with the
following:
git am --directory="usr/dash" --exclude="usr/dash/configure.ac" \
--exclude="usr/dash/ChangeLog" --exclude="usr/dash/dash.1" \
--exclude="usr/dash/Makefile.am"
--exclude="usr/dash/mksignames.c" \
--whitespace=fix -k -i -s ../dash/000X-foo.patch
(needs git am exclude support, which is in the second patch and easy)
The real trouble I have is that mkbuiltins is now generating a third
include file (token_vars.h) and had trouble to understand current hacks
for it already generating...
2019 Jan 20
0
[klibc:master] Build and install kinit and sh without ".shared" suffix
...sr/dash/Kbuild
@@ -18,22 +18,22 @@ init-o-files := alias.o arith_yacc.o arith_yylex.o cd.o error.o eval.o exec.o ex
gen-o-files := builtins.o init.o nodes.o syntax.o
-sh-y := $(init-o-files) $(gen-o-files)
+static/sh-y := $(init-o-files) $(gen-o-files)
hostprogs-y := mkinit mksyntax mknodes mksignames
gen-h-files := builtins.h nodes.h syntax.h token.h
-static-y := sh
+static-y := static/sh
# The shared binary
-shared-y := sh.shared
-sh.shared-y := $(sh-y)
+shared-y := shared/sh
+shared/sh-y := $(static/sh-y)
# For cleaning
-targets := sh sh.g sh.shared sh.shared.g $(gen-o-files)
+...