0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

EV3RTのコンパイラをarm64で動かした件

Last updated at Posted at 2025-03-08

2025/3/25追記:この方法では、生成したバイナリを実行することができません。

やったこと

コマンドをどうぞ

# enter superuser mode
sudo su

# install dependencies
apt update
apt install build-essential ruby wget -y
wget -o arm-none-eabi-gcc.tar.bz2 https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-aarch64-linux.tar.bz2?revision=4583ce78-e7e7-459a-ad9f-bff8e94839f1&rev=4583ce78e7e7459aad9fbff8e94839f1&hash=7554C5810C5A4B90EBF8CC4EAEAEC86B
tar -xvf arm-none-eabi-gcc.tar.bz2

# add to path; this command can be replaced with others
export PATH=$PATH:<extracted folder>/bin

# download workspace
# (省略)

あとはいつものmake app=helloev3で動きます。

おわりに

何かあればコメントでどうぞ~

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?