πŸ‘¨β€πŸ’»
Taek Lim
πŸ‘¨β€πŸ’»
Taek Lim
πŸ‘¨β€πŸ’»
MENU
  • > HOME
  • > ALL POSTS
  • > EXPLORE
  • > ABOUT
  • > RESUME

> TIO.TAEK.LIM@GMAIL.COM

> GITHUB: tradelunch

> LINKEDIN: tiotaeklim

> WARRENSBURG, MO 64093 USA

  • Home
  • All posts
  • Explore
  • About
  • Resume

No recently viewed posts yet.

No saved tags yet.

Ttaeklim@taeklim
T

taeklim

@taeklim

3 posts

  • #agents1
  • #ai1
  • #cargo1
  • #chains1
  • #cross-compilation1
  • #java1
  • #jdbc1
  • #jdbctemplate1
  • #langchain1
  • #llm1
  • #macos1
  • #memory1
  • #python1
  • #rag1
  • #rust1
  • #rustup1
  • #spring1
  • #spring-boot1
  • #spring-data-jdbc1
  • #spring-session1
  • #toolchain1
  • #wasm1
  • agents1
  • ai1
  • cargo1
  • chains1
  • cross-compilation1
  • java1
  • jdbc1
  • jdbctemplate1
  • langchain1
  • llm1
  • macos1
πŸ‘€TAEKLIMβ€’2026-06-27
#rust#rustup#cargo#toolchain#cross-compilation#macos#wasm

Rust Config

rust-config thumbnail

Posted on 2026-01-19

setup - mac os

install

# install brew install rustup # version rustup --version # check current toolchain list rustup toolchain list # install defalut stable rust version rustup default stable

check current toolchain

rustup show

set a specific version for a project

  • set
cd my_project rustup override set nightly
  • unset
rustup override unset

set exact release

rustup toolchain install 1.75.0 rustup override set 1.75.0

update

# rustup self update rustup self update # toolchain update rustup update rustup update stable rustup update nightly

manage components

# general rustup component add rustfmt rustup component add clippy # specific rustup component add rust-src --toolchain nightly # check rustup component list --installed

cross compiler target

  • check toolchain
rustup show
  • result
Default host: aarch64-apple-darwin rustup home: /Users/tio/.rustup installed toolchains -------------------- stable-aarch64-apple-darwin (active, default) active toolchain ---------------- name: stable-aarch64-apple-darwin active because: it's the default toolchain installed targets: aarch64-apple-darwin
  • add toolchain for cross compiler
# Linux ARM server rustup target add aarch64-unknown-linux-gnu # Linux x86_64 rustup target add x86_64-unknown-linux-gnu # check rustup target list --installed # static link rustup target add x86_64-unknown-linux-musl rustup target add aarch64-unknown-linux-musl # WASM rustup target add wasm32-unknown-unknown
  • what if you do not install?
cargo build --target x86_64-unknown-linux-gnu # build failed # Linux ARM ABI β‰  macOS ARM ABI

uninstall

rustup self uninstall

References

  • Cargo page
  • Rustup page

Back to top

memory
1
  • python1
  • rag1
  • rust1
  • rustup1
  • spring1
  • spring-boot1
  • spring-data-jdbc1
  • spring-session1
  • toolchain1
  • wasm1
  • # IOS
    rustup target
    add
    aarch64-apple-ios

    Comments

    No comments yet β€” be the first to comment.

    @taeklim
    3 posts

    > CATEGORIES