Skip to content

Commit

Permalink
<Make> Add hard links for toolchain
Browse files Browse the repository at this point in the history
- These are default links added for first time cloning
- For people who wish to push to toolchain repos, use git ssh
  But later, run: `git update-index --skip-worktree mk/tc_get.mk`
  to avoid accidental pushes
  • Loading branch information
akashkollipara committed Nov 22, 2023
1 parent 604c295 commit 1e7601e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mk/tc_get.mk
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ T_ALLOWLIST += get_all_tc get_avr_tc get_arm_tc get_riscv_tc
# GIT REPO RECOMMENDED
# Provide git repo path for toolchains for better experience
ESIZE_REPO := https://github.com/VisorFolks/cc_elf_size.git
AVR_TC_REPO ?=
RISC_V_TC_REPO ?=
ARM_TC_REPO ?=
AVR_TC_REPO ?= https://github.com/VisorFolks/avr-toolchain
RISC_V_TC_REPO ?= https://github.com/VisorFolks/risc-v-toolchain
ARM_TC_REPO ?= https://github.com/VisorFolks/arm-toolchain

get_all_tc: --tc_clear get_avr_tc get_arm_tc get_riscv_tc

Expand Down

0 comments on commit 1e7601e

Please sign in to comment.