Displaying 20 results from an estimated 7000 matches similar to: "latest dash compile warnings"
2006 Jan 08
2
[mips] pipe doesn't work in dash
Pipe doesn't work in dash on mips/mipsel - everything delivered to a
pipe is shown on stdout:
mipsel:
$ echo foo | cat > ~/d
foo
<ctrl-c pressed manually>
$ cat ~/d
$
i386:
$ echo foo | cat > ~/d
$ cat ~/d
foo
$
This may be related to the following warnings during compilation but
I'm not sure:
klibc/arch/mips/syscall.S: Assembler messages:
klibc/arch/mips/syscall.S:12:
2010 Oct 19
3
[PATCH] Fix up 3 klibc build warnings.
klibc/scripts/basic/fixdep.c: In function 'traps':
klibc/scripts/basic/fixdep.c:368: warning: dereferencing type-punned pointer will break strict-aliasing rules
klibc/scripts/basic/fixdep.c:370: warning: dereferencing type-punned pointer will break strict-aliasing rules
klibc/usr/dash/jobs.c: In function 'sprint_status':
klibc/usr/dash/jobs.c:427: warning: format not a string
2010 Apr 02
2
(fwd) dash fix for job control off warning
----- Forwarded message from "H. Peter Anvin" <hpa at zytor.com> -----
Date: Mon, 29 Mar 2010 15:07:01 -0700
From: "H. Peter Anvin" <hpa at zytor.com>
To: maximilian attems <max at stro.at>
Cc: Colin Watson <cjwatson at ubuntu.com>, klibc at zytor.com,
Herbert Xu <herbert at gondor.apana.org.au>,
Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
2010 Apr 06
1
[patch v2] dash fix for job control off warning
fix subject and added warning to patch mail,
thanks for review.
----- Forwarded message from "H. Peter Anvin" <hpa at zytor.com> -----
Date: Mon, 29 Mar 2010 15:07:01 -0700
From: "H. Peter Anvin" <hpa at zytor.com>
To: maximilian attems <max at stro.at>
Cc: Colin Watson <cjwatson at ubuntu.com>, klibc at zytor.com,
Herbert Xu <herbert at
2011 May 17
2
[PATCH] arm: use bx on thumb2 v3
Use klibc way to define a system dependent preprocessor
definition: disabled by default and enabled for newer arm.
Based on a patch by vorlon that got tested on his beagleboard,
should be functional equivalent.
Fixes: https://bugs.launchpad.net/ubuntu/+source/klibc/+bug/527720
Cc: Steve Langasek <steve.langasek at canonical.com>
Cc: Kirill A. Shutemov <kirill at shutemov.name>
Cc:
2020 Mar 28
0
[klibc:update-dash] dash: eval: Add vfork support
Commit-ID: cef709c42bb5ac1c45e7c42f440bc1c010f39b9b
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=cef709c42bb5ac1c45e7c42f440bc1c010f39b9b
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Sat, 19 May 2018 02:39:56 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: eval: Add vfork
2011 Feb 16
2
fwd: fix up ARM assembly to use 'bx lr' in place of 'mov pc, lr'.
hello vorlon,
got notified of your patch,
will apply next days upstream unless some critiques are voiced on ml.
thanks.
--
maks
----- Forwarded message from Steve Langasek <steve.langasek at canonical.com> -----
Date: Wed, 16 Feb 2011 22:05:42 -0000
From: Steve Langasek <steve.langasek at canonical.com>
Subject: [Bug 527720] Re: thumb2 porting issues identified: klibc uses
2011 Aug 08
0
[PATCH/RFC] Add initial avr32 port
From: Bradley Smith <brad at brad-smith.co.uk>
This patch is from
http://git.brad-smith.co.uk/?p=avr32/klibc.git;a=summary
It squashes together and includes those commits:
* Fix ld flags such that shared builds actually run.
* Fix setjmp.
* Fix sigaction/sigrestorer.
* Tidy everything up.
* Fix lseek mess.
Cc: H?vard_Skinnemoen <hskinnemoen at gmail.com>
Cc: Hans-Christian Egtvedt
2007 Aug 15
0
[git patch] fstype support + minor stuff
hello hpa,
rebased my branch, please pull latest
git pull git://brane.itp.tuwien.ac.at/~mattems/klibc.git maks
for the following shortlog
maximilian attems (6):
fstype: add squashfs v3 support
reiser4_fs.h: add attribute packed to reiser4_master_sb
fstype: add ext4 support
.gitignore: add subdir specific entries
usr/klibc/Kbuild: beautify klibc build
fstype:
2006 Jan 31
1
[patch] Kbuild.klibc don't hardcode gcc version
sparc still needs gcc-3.3 for a working run-init.
belows makes use of the exported CC var.
Signed-off-by: maximilian attems <maks@sternwelten.at>
diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc
index 66e16e7..70e4071 100644
--- a/scripts/Kbuild.klibc
+++ b/scripts/Kbuild.klibc
@@ -72,7 +72,7 @@ KLIBCROSS := $(CROSS_COMPILE)
# binutils
KLIBCLD := $(KLIBCROSS)ld
2020 Mar 28
0
[klibc:update-dash] dash: mkinit: Split reset into exitreset and reset
Commit-ID: 7f799aacc75667708bafe8f4411891ec053d7d65
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=7f799aacc75667708bafe8f4411891ec053d7d65
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Sat, 19 May 2018 02:39:40 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:55 +0000
[klibc] dash: mkinit: Split
2010 Apr 02
1
[PATCH] dash: cd fix getpwd
From: maximilian attems <max at stro.at>
On review of klibc dash changes:
"Hmm, this breaks the non-glibc case. You're now returning a pointer to a
string on the stack which is illegal." Herbert Xu
Use upstream dash way.
Signed-off-by: maximilian attems <max at stro.at>
Cc: Herbert Xu <herbert at gondor.apana.org.au>
---
usr/dash/cd.c | 7 ++++---
1 files
2012 Jul 02
0
[klibc:master] dash: sync with latest git
Commit-ID: 1ece5af4d7dccc7d8af3c358303fafdb52dbfe6d
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=1ece5af4d7dccc7d8af3c358303fafdb52dbfe6d
Author: maximilian attems <max at stro.at>
AuthorDate: Mon, 2 Jul 2012 10:51:46 +0200
Committer: maximilian attems <max at stro.at>
CommitDate: Mon, 2 Jul 2012 11:03:33 +0200
[klibc] dash: sync with latest git
Gains us
2012 Jul 01
2
[klibc:master] arm/setjmp.S: fix longjmp
Commit-ID: d7d16afbdae9bdea83aeb26ac572e6fc4d7d4940
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=d7d16afbdae9bdea83aeb26ac572e6fc4d7d4940
Author: Steve McIntyre <steve at einval.com>
AuthorDate: Fri, 29 Jun 2012 18:13:34 +0100
Committer: maximilian attems <max at stro.at>
CommitDate: Sun, 1 Jul 2012 22:51:00 +0200
[klibc] arm/setjmp.S: fix longjmp
2007 Aug 23
0
[git patch] klibc dash 0.5.4 update
hello hpa,
please pull for the dash update
git pull git://brane.itp.tuwien.ac.at/~mattems/klibc.git maks
with this changes:
Alexey Gladkov (1):
Check return code for getgroups and fwrite
Herbert Xu (17):
Remove unnecessary truncation in _STPUTC
Always call conv_escape_str in echocmd
Fix \c spillage across echo commands
Release 0.5.3.
Make eval with empty
2006 Jan 12
1
[3.20pre4] cannot build menu.c32
Hi!
I have just tried to build menu.c32 but it fails.
3.20pre3 works fine though.
Here is what happens:
bash-3.1$ make
gcc -m32 -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os
-fomit-frame-pointer -I../libutil/include -I../include -D__COM32__ -c
-o menu.o menu.c
menu.c: In function `run_menu':
menu.c:549: warning: variable `done' might be clobbered by `longjmp' or
`vfork'
2006 Feb 09
0
Dash fails to link with KLIBCKERNELOBJ set
Hi,
From the Makefile I figured that to build klibc where the kernel was
built with O=/someotherdir, you need to do:
make KLIBCKERNELOBJ=/someotherdir KBUILD_SRC=1
Everything seems fine though, but it fails to link dash with:
-----
KLIBCCC dash/bltin/printf.o
KLIBCCC dash/system.o
KLIBCCC dash/bltin/test.o
KLIBCCC dash/bltin/times.o
KLIBCCC dash/var.o
GEN dash/init.c
KLIBCCC
2013 Oct 09
1
[PATCH 0/1] Porting klibc to AArch64
On Wed, 9 Oct 2013 15:51:32 +0200
maximilian attems <maks at stro.at> wrote:
> On Wed, Oct 09, 2013 at 03:14:44PM +0530, Anil Singhar wrote:
> > Hi All:
> >
> > We have some patches to port klibc to ArmV8.
> >
> > The first set of patches from Neil Williams fixes the build issues.
> > The second set of patches from Anil Singhar fixes functionalities.
[klibc:update-dash] dash: [BUILTIN] Exit without arguments in a trap should use status outside traps
2020 Mar 28
0
[klibc:update-dash] dash: [BUILTIN] Exit without arguments in a trap should use status outside traps
Commit-ID: 85a5a4a9d96c0c680597432f1e4454718e7ad101
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=85a5a4a9d96c0c680597432f1e4454718e7ad101
Author: Herbert Xu <herbert at gondor.apana.org.au>
AuthorDate: Mon, 6 Oct 2014 10:39:47 +0800
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 21:42:54 +0000
[klibc] dash: [BUILTIN] Exit
2013 Oct 09
5
[PATCH 0/1] Porting klibc to AArch64
Hi All:
We have some patches to port klibc to ArmV8.
The first set of patches from Neil Williams fixes the build issues.
The second set of patches from Anil Singhar fixes functionalities.
The following files have changed in the second set of patches
------------------------------------------------------------------------------------------
usr/include/arch/aarch64/klibc/archconfig.h