Coder Social home page Coder Social logo

Cross compile about lilliput HOT 12 OPEN

discord avatar discord commented on May 21, 2024 3
Cross compile

from lilliput.

Comments (12)

brian-armstrong-discord avatar brian-armstrong-discord commented on May 21, 2024

Have you tried brew install nasm?

from lilliput.

samsamm777 avatar samsamm777 commented on May 21, 2024

@brian-armstrong-discord Yes I've now got all the deps installed. Initially thought that would fix it, however building with crosscompile still doesn't work.

from lilliput.

brian-armstrong-discord avatar brian-armstrong-discord commented on May 21, 2024

What is the error?

from lilliput.

realtruckcgoltz avatar realtruckcgoltz commented on May 21, 2024

I'd like to add my voice to this issue as well. It seems like cross-compiling, regardless of the host os, isn't working as hoped.

On macOS:

$ GOOS=linux go build
# github.com/discordapp/lilliput
../../go/src/github.com/discordapp/lilliput/lilliput.go:26:13: undefined: ImageHeader
../../go/src/github.com/discordapp/lilliput/lilliput.go:41:14: undefined: Framebuffer
../../go/src/github.com/discordapp/lilliput/lilliput.go:48:12: undefined: Framebuffer
../../go/src/github.com/discordapp/lilliput/ops.go:43:16: undefined: Framebuffer

On Linux:

$ GOOS=darwin go build
# github.com/discordapp/lilliput
../../go/src/github.com/discordapp/lilliput/lilliput.go:26:13: undefined: ImageHeader
../../go/src/github.com/discordapp/lilliput/lilliput.go:41:14: undefined: Framebuffer
../../go/src/github.com/discordapp/lilliput/lilliput.go:48:12: undefined: Framebuffer
../../go/src/github.com/discordapp/lilliput/ops.go:43:16: undefined: Framebuffer

go build in the same directory works regardless of platform.

My "go greeness" is showing here, but could it be that the platform is getting lost along the way, resulting in a build attempt that's just all kinds of confused?

from lilliput.

brian-armstrong-discord avatar brian-armstrong-discord commented on May 21, 2024

Well, this package also has c deps that are needed, and compilation has to occur with cgo.

Maybe https://gist.github.com/steeve/6905542 is relevant?

from lilliput.

brian-armstrong-discord avatar brian-armstrong-discord commented on May 21, 2024

It looks like if nothing else, in cross-compile mode, you need CGO_ENABLED=1. But you'll also need a valid cross-compile setup for compiling the C deps.

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024

Did you manage to work around this issue @samsamm777

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024
docker run -it --rm \
  -v $GOPATH/src/github.com/MYPROJECT/app/backend:/go/src/github.com/MYPROJECT/app/backend \
  -w /go/src/github.com/MYPROJECT/app/backend \
  -e CGO_ENABLED=1 \
  docker.elastic.co/beats-dev/golang-crossbuild:1.14.4-main-debian8 \
  --build-cmd "go build" \
  -p "linux/amd64"

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024

Only this error left now:

/usr/bin/ld: cannot find -lpng
/usr/bin/ld: cannot find -lpng
collect2: error: ld returned 1 exit status
Error: failed building for linux/amd64: exit status 2
failed building for linux/amd64: exit status 2

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024
docker run -it --rm \
  -v $GOPATH/src/github.com/MYPROJECT/app/backend:/go/src/github.com/MYPROJECT/app/backend \
  -w /go/src/github.com/MYPROJECT/app/backend \
  -e CGO_ENABLED=1 \
  docker.elastic.co/beats-dev/golang-crossbuild:1.14.4-main-debian8 \
  --build-cmd "
  apt-get update
   apt-get install gcc libc6-dev

 apt-get install libx11-dev xorg-dev libxtst-dev libpng++-dev   

 apt-get install xcb libxcb-xkb-dev x11-xkb-utils libx11-xcb-dev libxkbcommon-x11-dev libxkbcommon-dev

 apt-get install xsel xclip
  go build -v" \
  -p "linux/amd64"

Results in

/usr/bin/ld: /go/pkg/mod/github.com/discordapp/[email protected]/deps/linux/lib/libswscale.a(swscale.o): unrecognized relocation (0x2a) in section `.text'
/usr/bin/ld: final link failed: Bad value
collect2: error: ld returned 1 exit status
Error: failed building for linux/amd64: exit status 2
failed building for linux/amd64: exit status 2

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024

Ah debian8 is old apparently crystal-lang/crystal#8653 (comment). It works with this command on OSX.


docker run -it --rm \
  -v $GOPATH/src/github.com/MYPROJECT/app/backend:/go/src/github.com/MYPROJECT/app/backend \
  -w /go/src/github.com/MYPROJECT/app/backend \
  -e CGO_ENABLED=1 \
  docker.elastic.co/beats-dev/golang-crossbuild:1.14.4-main \
  --build-cmd "
  apt-get -y update
   apt-get -y install gcc libc6-dev

 apt-get -y install libx11-dev xorg-dev libxtst-dev libpng++-dev   

 apt-get -y install xcb libxcb-xkb-dev x11-xkb-utils libx11-xcb-dev libxkbcommon-x11-dev libxkbcommon-dev
apt-get -y upgrade binutils
 apt-get -y install xsel xclip
  go build -v" \
  -p "linux/amd64"

from lilliput.

RichardLindhout avatar RichardLindhout commented on May 21, 2024

Final command :-D

It works 👍

docker run -it --rm \
  -v $GOPATH/src/github.com/MYPROJECT/app/backend:/go/src/github.com/MYPROJECT/app/backend \
  -w /go/src/github.com/MYPROJECT/app/backend \
  -e CGO_ENABLED=1 \
  docker.elastic.co/beats-dev/golang-crossbuild:1.14.4-main \
  --build-cmd "
apt-get -y update
apt-get -y install libpng++-dev   
go build -v
" \
  -p "linux/amd64"

from lilliput.

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.