Package: android-platform-build-kati / 10.0.0+r32+git20220314.09dfa26c4e59-7

Metadata

Package Version Patches format
android-platform-build-kati 10.0.0+r32+git20220314.09dfa26c4e59-7 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Make sure PATH_MAX is defined on GNU Hurd.patch | (download)

src/strutil.cc | 1 0 + 1 - 0 !
src/strutil.h | 5 5 + 0 - 0 !
2 files changed, 5 insertions(+), 1 deletion(-)

 [patch 1/3] make sure path_max is defined on gnu/hurd

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>

0002 Link against lrt lpthread on GNU Hurd too.patch | (download)

Makefile.ckati | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 [patch 2/3] link against -lrt -lpthread on gnu/hurd too

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>

0003 Implement GNU Hurd and BSD support inspired by the L.patch | (download)

src/fileutil.cc | 35 31 + 4 - 0 !
1 file changed, 31 insertions(+), 4 deletions(-)

 [patch 3/3] implement gnu/hurd and bsd support inspired by the llvm
 implementation

Signed-off-by: Andrej Shadura <andrew.shadura@collabora.co.uk>

0004 Don t overwrite KATI_CXXFLAGS so that the can be pre.patch | (download)

Makefile.ckati | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 dont overwrite kati_cxxflags so that the can be pre-set by the system


0005 Drop march native.patch | (download)

Makefile.ckati | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 drop -march=native


0006 Prevent integer constant overflow on 32 bit systems.patch | (download)

golang/kati/serialize.go | 4 3 + 1 - 0 !
1 file changed, 3 insertions(+), 1 deletion(-)

 prevent integer constant overflow on 32-bit systems

10 gig doesnt fit into a 32-bit int. This workaround makes it compile,
but this is effectively dead code as such huge values arent going to
fit into the function argument anyway.

src/github.com/google/kati/golang/kati/serialize.go:585:29: error: integer constant overflow
  585 |         if n >= 10*1000*1000*1000 {
      |                             ^