mirror of
https://github.com/asciinema/asciinema.git
synced 2026-04-24 23:45:50 +03:00
[GH-ISSUE #100] Compile with gccgo #76
Labels
No labels
bug
compatibility
feature request
fit for beginners
help wanted
hosting
idea
improvement
packaging
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asciinema#76
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @spotlightishere on GitHub (May 9, 2015).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/100
I have a PowerPC computer, and Go doesn't natively support my platform. However, gccgo does. Is there any way to compile this with gccgo, or if not, any plans to support this? I know that most people have the native Go compiler available, so this wouldn't be useful to most people.
Just messing around, I've gotten this:
gccgo github.com/asciinema/asciinema/main.go -o bin/asciinema
github.com/asciinema/asciinema/main.go:9:82: error: import file ‘github.com/asciinema/asciinema/Godeps/_workspace/src/github.com/docopt/docopt-go’ not found
github.com/asciinema/asciinema/main.go:10:36: error: import file ‘github.com/asciinema/asciinema/api’ not found
github.com/asciinema/asciinema/main.go:11:41: error: import file ‘github.com/asciinema/asciinema/commands’ not found
github.com/asciinema/asciinema/main.go:12:37: error: import file ‘github.com/asciinema/asciinema/util’ not found
github.com/asciinema/asciinema/main.go:105:6: error: reference to undefined name ‘util’
github.com/asciinema/asciinema/main.go:110:14: error: reference to undefined name ‘util’
github.com/asciinema/asciinema/main.go:116:9: error: reference to undefined name ‘api’
github.com/asciinema/asciinema/main.go:117:13: error: reference to undefined name ‘docopt’
github.com/asciinema/asciinema/main.go:121:14: error: reference to undefined name ‘util’
github.com/asciinema/asciinema/main.go:126:10: error: reference to undefined name ‘commands’
github.com/asciinema/asciinema/main.go:131:10: error: reference to undefined name ‘commands’
github.com/asciinema/asciinema/main.go:136:10: error: reference to undefined name ‘commands’
github.com/asciinema/asciinema/main.go:140:10: error: reference to undefined name ‘commands’
@ku1ik commented on GitHub (May 10, 2015):
Unfortunately I have zero experience with gccgo. I'm afraid I won't be able to help with this at the moment. But feel free to post the status of your messing around here. It may be worth to putting the instructions for compiling on PowerPC on wiki.
@spotlightishere commented on GitHub (May 29, 2016):
I unfortunately no longer have the same environment on my PowerPC computer, so I can no longer mess around with this.