QuestionPython

Results 15 comments of QuestionPython

???!!! @andrewchambers

i old work with yacc on go 1.6 or 1.5 or 1.4. but now i have go 1.8 and this have problem i think... i first delete `/home/guest/go/src/github.com/cznic/goyacc` folder, $...

$ls -a $(which goyacc) --------- /home/guest/go/bin/goyacc $rm /home/guest/go/bin/goyacc ---------- $go get -u -v github.com/cznic/goyacc -------- $ls -la $(which goyacc) ---------- -rwxr-xr-x 1 guest guest 3397456 Mar 9 23:17 /home/guest/go/bin/goyacc

$ make -------- go fmt go test PASS ok github.com/cznic-/goyacc 0.002s go install go tool vet -printfuncs "Log:0,Logf:1" *.go golint . make todo make[1]: Entering directory '/home/guest/go/src/github.com/cznic-/goyacc' main.go:554: _ =...

$ go install github.com/cznic/goyacc ------- >result of this is empty.! $ goyacc -h ---------- >Usage of goyacc: -c report state closures -cr check all states are reducible -dlval string debug...

$ which goyacc /home/guest/go/bin/goyacc i want use from `go tool yacc`, but say not exist! go tool: no such tool "yacc"

$ go get -u golang.org/x/tools/cmd/goyacc ------ $ go tool yacc --------- go tool: no such tool "yacc" TestData of GoYacc Directory --------- >/home/guest/go/src/golang.org/x/tools/cmd/goyacc/testdata/expr$ go generate /home/guest/go/src/golang.org/x/tools/cmd/goyacc/testdata/expr$ go build /home/guest/go/src/golang.org/x/tools/cmd/goyacc/testdata/expr$ ./expr...

tank you...., i waiting for you. :+1: again tank you from you.

this Bug Fix with Changes : -------------------------- src/ast.h : --------- ``` #include "llvm/IR/instruction.h" ``` to ``` #include "llvm/IR/Instruction.h" ``` src/makefile : ------- ``` LLVM_CONFIG = /usr/local/opt/llvm35/bin/llvm-config-3.5 ``` to ``` LLVM_CONFIG...

Bug at Final of Make. $ make --------- ``` g++ -c `/usr/bin/llvm-config-3.5 --cppflags` -std=c++11 -Wno-return-type -Wno-c++11-compat-deprecated-writable-strings -Wno-deprecated-register -Wno-switch -g -o parser.o parser.cpp In file included from pascal.y:8:0: utils.h:30:0: warning: "NDEBUG"...