LoginSignup
8
8

More than 5 years have passed since last update.

golang のバイナリをRaspberry pi用にWindows 上でクロスコンパイルしてputtyで転送する

Posted at

いつも忘れるので、自分用にメモ。

uname -mでARMバージョンを確認

$ uname -m
armv6l

windowsのコマンドプロンプトでgoのバイナリをビルド

> set GOOS=linux
> set GOARCH=arm
> set GOARM=6
> go build -o {{バイナリ名}}

pscpを使ってファイルをRaspberry pi に転送

> pscp -scp -P 22 {{送りたいファイル}} pi@192.168.1.1:/home/pi

参考文献

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8