search for: mksyntax

Displaying 12 results from an estimated 12 matches for "mksyntax".

Did you mean: fsyntax
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/hpa/klibc/klibc.clean/das...
2019 Jan 20
0
[klibc:master] Build and install kinit and sh without ".shared" suffix
...sh/Kbuild +++ b/usr/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...
2010 Mar 22
1
[git pull] dash, sh4, README's
...h/main.c | 18 +- usr/dash/memalloc.c | 39 +--- usr/dash/memalloc.h | 9 +- usr/dash/miscbltin.c | 99 +++++--- usr/dash/mkbuiltins | 5 +- usr/dash/mksyntax.c | 6 +- usr/dash/mystring.c | 55 ++++- usr/dash/mystring.h | 6 +- usr/dash/options.c | 86 ++++--- usr/dash/options.h | 2 +- usr/dash/parser.c...
2019 Jan 25
0
[klibc:update-dash] [SHELL] Optimize dash -c "command" to avoid a fork
...sr/dash/Kbuild +++ b/usr/dash/Kbuild @@ -35,13 +35,19 @@ targets := static/sh static/sh.g shared/sh shared/sh.g $(gen-o-files) # explicit dependency for all generated files $(addprefix $(obj)/, $(static/sh-y)): $(addprefix $(obj)/, $(gen-h-files)) -# Generate token.h -targets += token.h +$(obj)/mksyntax: $(obj)/token.h + +# Generate token{,_vars}.h +targets += token.h token_vars.h quiet_cmd_mktokens = GEN $@ cmd_mktokens = (cd $(obj) && sh $(srctree)/$(src)/mktokens) $(obj)/token.h: $(src)/mktokens $(call if_changed,mktokens) +# side effect.. +$(obj)/token_vars.h: $(obj)/t...
2020 Mar 28
0
[klibc:update-dash] dash: [SHELL] Optimize dash -c "command" to avoid a fork
...sr/dash/Kbuild +++ b/usr/dash/Kbuild @@ -35,13 +35,19 @@ targets := static/sh static/sh.g shared/sh shared/sh.g $(gen-o-files) # explicit dependency for all generated files $(addprefix $(obj)/, $(static/sh-y)): $(addprefix $(obj)/, $(gen-h-files)) -# Generate token.h -targets += token.h +$(obj)/mksyntax: $(obj)/token.h + +# Generate token{,_vars}.h +targets += token.h token_vars.h quiet_cmd_mktokens = GEN $@ cmd_mktokens = (cd $(obj) && sh $(srctree)/$(src)/mktokens) $(obj)/token.h: $(src)/mktokens $(call if_changed,mktokens) +# side effect.. +$(obj)/token_vars.h: $(obj)/t...
2010 Apr 16
0
[git pull v4] dash, sh4, ipconfig, dprintf, fstype, README's
...h/main.c | 18 +- usr/dash/memalloc.c | 39 +--- usr/dash/memalloc.h | 9 +- usr/dash/miscbltin.c | 99 +++++--- usr/dash/mkbuiltins | 5 +- usr/dash/mksyntax.c | 6 +- usr/dash/mystring.c | 55 ++++- usr/dash/mystring.h | 6 +- usr/dash/options.c | 86 ++++--- usr/dash/options.h | 2 +- usr/dash/parser.c...
2010 Apr 16
0
[PATCH] pull faccessat() system call
...h/main.c | 18 +- usr/dash/memalloc.c | 39 +--- usr/dash/memalloc.h | 9 +- usr/dash/miscbltin.c | 99 +++++--- usr/dash/mkbuiltins | 5 +- usr/dash/mksyntax.c | 6 +- usr/dash/mystring.c | 55 ++++- usr/dash/mystring.h | 6 +- usr/dash/options.c | 86 ++++--- usr/dash/options.h | 2 +- usr/dash/parser.c...
2010 Mar 28
1
[git pull v3] dash, sh4, ipconfig, dprintf, fstype, README's
...h/main.c | 18 +- usr/dash/memalloc.c | 39 +--- usr/dash/memalloc.h | 9 +- usr/dash/miscbltin.c | 99 +++++--- usr/dash/mkbuiltins | 5 +- usr/dash/mksyntax.c | 6 +- usr/dash/mystring.c | 55 ++++- usr/dash/mystring.h | 6 +- usr/dash/options.c | 86 ++++--- usr/dash/options.h | 2 +- usr/dash/parser.c...
2007 Aug 15
0
[git patch] fstype support + minor stuff
...@ -7,3 +7,5 @@ # *.o *.o.cmd +.*.cmd +*.g diff --git a/usr/dash/.gitignore b/usr/dash/.gitignore new file mode 100644 index 0000000..bf6dab5 --- /dev/null +++ b/usr/dash/.gitignore @@ -0,0 +1,17 @@ +.builtins.def.d +arith.c +arith.h +builtins.c +builtins.def +builtins.h +init.c +mkinit +mknodes +mksyntax +nodes.c +nodes.h +sh +sh.shared +syntax.c +syntax.h +token.h diff --git a/usr/gzip/.gitignore b/usr/gzip/.gitignore new file mode 100644 index 0000000..b665e3f --- /dev/null +++ b/usr/gzip/.gitignore @@ -0,0 +1,3 @@ +gunzip +gzip +zcat diff --git a/usr/kinit/.gitignore b/usr/kinit/.gitignore new f...
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...er -DBSD=1 -DSMALL -DJOBS=0 -DHAVE_CONFIG_H -DSHELL -DGLOB_BROKEN -DIFS_BROKEN -o usr/dash/mknodes usr/dash/mknodes.c cd usr/dash && ./mknodes /root/ofs/trunk/packages/klibc-2.0.2/usr/dash/nodetypes /root/ofs/trunk/packages/klibc-2.0.2/usr/dash/nodes.c.pat : gcc -Wp,-MD,usr/dash/.mksyntax.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DBSD=1 -DSMALL -DJOBS=0 -DHAVE_CONFIG_H -DSHELL -DGLOB_BROKEN -DIFS_BROKEN -o usr/dash/mksyntax usr/dash/mksyntax.c cd usr/dash && ./mksyntax : sh usr/dash/mktokens > usr/dash/token.h ppc-linux-gcc -Wp,-MD,usr/dash/.alias...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: