GithubHelp home page GithubHelp logo

Comments (8)

GeertJohan avatar GeertJohan commented on June 18, 2024

Did you file an issue at osext? The best solution would be if osext gets plan9 compatibility..

from go.rice.

pksunkara avatar pksunkara commented on June 18, 2024

They don't have issues page. Can you see if you can include that lib in your repo and edit them?

from go.rice.

GeertJohan avatar GeertJohan commented on June 18, 2024

I'd rather not do that, it would effectively mean that I must watch and update the upstream repo.
I think if you file a pull request with the fix for plan9 kardianos will merge it in. What is the problem with osext for plan9?

from go.rice.

pksunkara avatar pksunkara commented on June 18, 2024

I don't think I can do that since I don't have the required knowledge. Here is the error I am getting.

# bitbucket.org/kardianos/osext
../../../bitbucket.org/kardianos/osext/osext_plan9.go:10: undefined: Open
../../../bitbucket.org/kardianos/osext/osext_plan9.go:10: undefined: itoa
../../../bitbucket.org/kardianos/osext/osext_plan9.go:10: undefined: Getpid

from go.rice.

GeertJohan avatar GeertJohan commented on June 18, 2024

Oh... well that just looks like wrong Go code to me..
Can you try replacing the contents of osext_plan9.go with this, please report if it works so I can file a PR at kardianos:

// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package osext

import (
    "syscall"
    "os"
    "strconv"
)

func executable() (string, error) {
    f, err := os.Open("/proc/" + strconv.Itoa(os.Getpid()) + "/text")
    if err != nil {
        return "", err
    }
    defer f.Close()
    return syscall.Fd2path(int(f.Fd()))
}

from go.rice.

pksunkara avatar pksunkara commented on June 18, 2024

Yup, works now.

Thanks 😄

from go.rice.

GeertJohan avatar GeertJohan commented on June 18, 2024

Great!
I made a PR at osext: https://bitbucket.org/kardianos/osext/pull-request/2/fix-osext_plan9go

from go.rice.

GeertJohan avatar GeertJohan commented on June 18, 2024

The change just got merged in, if you reset osext and pull from bitbucket it should work.

from go.rice.

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.