Git Product home page Git Product logo

Comments (5)

xairy avatar xairy commented on April 28, 2024

Having the same issue on Ubuntu 14.04 with go version go1.6 linux/amd64:

make[1]: Leaving directory `/home/xairy/Development/go/src/github.com/google/syzkaller'
go install ./syz-manager ./syz-fuzzer
# github.com/google/syzkaller/sys
panic: runtime error: makeslice: len out of range

goroutine 1 [running]:
panic(0x85d9e0, 0xc849858ed0)
    /usr/lib/go/src/runtime/panic.go:464 +0x3e6
cmd/compile/internal/gc.newliveness(0xc82082ee10, 0xc82b6e4240, 0xc8505aa000, 0x35a64, 0x3a000, 0xc8497de000, 0xd398, 0xf000, 0x4130239190186200)
    /usr/lib/go/src/cmd/compile/internal/gc/plive.go:687 +0x161
cmd/compile/internal/gc.liveness(0xc82082ee10, 0xc82b6e4240, 0xc82d2c3e80, 0xc82d2c3f00)
    /usr/lib/go/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf
cmd/compile/internal/gc.compile(0xc82082ee10)
    /usr/lib/go/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2
cmd/compile/internal/gc.funccompile(0xc82082ee10)
    /usr/lib/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0
cmd/compile/internal/gc.Main()
    /usr/lib/go/src/cmd/compile/internal/gc/lex.go:476 +0x2205
cmd/compile/internal/amd64.Main()
    /usr/lib/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d
main.main()
    /usr/lib/go/src/cmd/compile/main.go:33 +0x395
make: *** [all] Error 2

from syzkaller.

dvyukov avatar dvyukov commented on April 28, 2024

On Tue, Nov 15, 2016 at 6:05 AM, Andrey Konovalov
[email protected] wrote:

Having the same issue on Ubuntu 14.04 with go version go1.6 linux/amd64:

make[1]: Leaving directory `/home/xairy/Development/go/src/github.com/google/syzkaller'
go install ./syz-manager ./syz-fuzzer

github.com/google/syzkaller/sys

panic: runtime error: makeslice: len out of range

goroutine 1 [running]:
panic(0x85d9e0, 0xc849858ed0)
/usr/lib/go/src/runtime/panic.go:464 +0x3e6
cmd/compile/internal/gc.newliveness(0xc82082ee10, 0xc82b6e4240, 0xc8505aa000, 0x35a64, 0x3a000, 0xc8497de000, 0xd398, 0xf000, 0x4130239190186200)
/usr/lib/go/src/cmd/compile/internal/gc/plive.go:687 +0x161
cmd/compile/internal/gc.liveness(0xc82082ee10, 0xc82b6e4240, 0xc82d2c3e80, 0xc82d2c3f00)
/usr/lib/go/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf
cmd/compile/internal/gc.compile(0xc82082ee10)
/usr/lib/go/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2
cmd/compile/internal/gc.funccompile(0xc82082ee10)
/usr/lib/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0
cmd/compile/internal/gc.Main()
/usr/lib/go/src/cmd/compile/internal/gc/lex.go:476 +0x2205
cmd/compile/internal/amd64.Main()
/usr/lib/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d
main.main()
/usr/lib/go/src/cmd/compile/main.go:33 +0x395
make: *** [all] Error 2

Please download Go 1.7.3 from here:
https://golang.org/dl/
it works.

from syzkaller.

dvyukov avatar dvyukov commented on April 28, 2024

On Tue, Nov 15, 2016 at 9:51 AM, Dmitry Vyukov [email protected] wrote:

On Tue, Nov 15, 2016 at 6:05 AM, Andrey Konovalov
[email protected] wrote:

Having the same issue on Ubuntu 14.04 with go version go1.6 linux/amd64:

make[1]: Leaving directory `/home/xairy/Development/go/src/github.com/google/syzkaller'
go install ./syz-manager ./syz-fuzzer

github.com/google/syzkaller/sys

panic: runtime error: makeslice: len out of range

goroutine 1 [running]:
panic(0x85d9e0, 0xc849858ed0)
/usr/lib/go/src/runtime/panic.go:464 +0x3e6
cmd/compile/internal/gc.newliveness(0xc82082ee10, 0xc82b6e4240, 0xc8505aa000, 0x35a64, 0x3a000, 0xc8497de000, 0xd398, 0xf000, 0x4130239190186200)
/usr/lib/go/src/cmd/compile/internal/gc/plive.go:687 +0x161
cmd/compile/internal/gc.liveness(0xc82082ee10, 0xc82b6e4240, 0xc82d2c3e80, 0xc82d2c3f00)
/usr/lib/go/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf
cmd/compile/internal/gc.compile(0xc82082ee10)
/usr/lib/go/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2
cmd/compile/internal/gc.funccompile(0xc82082ee10)
/usr/lib/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0
cmd/compile/internal/gc.Main()
/usr/lib/go/src/cmd/compile/internal/gc/lex.go:476 +0x2205
cmd/compile/internal/amd64.Main()
/usr/lib/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d
main.main()
/usr/lib/go/src/cmd/compile/main.go:33 +0x395
make: *** [all] Error 2

Please download Go 1.7.3 from here:
https://golang.org/dl/
it works.

13f99c5

makes it work 1.6 as well

from syzkaller.

xairy avatar xairy commented on April 28, 2024

This fixes the issue for me, thanks!

from syzkaller.

d33d avatar d33d commented on April 28, 2024

For me too! Thanks

Il 15 Nov 2016 12:14 PM, "Andrey Konovalov" [email protected] ha
scritto:

This fixes the issue for me, thanks!


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#87 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AFkc8eH43FhqA843yKj4puY03H7OTXfuks5q-ZQjgaJpZM4KxmwG
.

from syzkaller.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.