⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set-vars-linux.sh

📁 改写的U-boot for s3c4510 (注意此源码是在windows下压缩了)。 1、支持串口下载
💻 SH
字号:
#! /bin/sh# LINUX VERSION# Set the place where SciTech Software is installed, and where each# of the supported compilers is installed. These environment variables# are used by the batch files in the SCITECH\BIN directory.## Modify the as appropriate for your compiler configuration (you should# only need to change things in this batch file).## This version is for a normal Linux installation.# The SCITECH variable points to where batch files, makefile startups,# include files and source files will be found when compiling.export SCITECH=$MGL_ROOT # The SCITECH_LIB variable points to where the SciTech libraries live# for installation and linking. This allows you to have the source and# include files on local machines for compiling and have the libraries# located on a common network machine (for network builds).export SCITECH_LIB=$SCITECH# The PRIVATE variable points to where private source files reside that# do not live in the public source treeexport PRIVATE=$HOME/private# The following define the locations of all the compilers that you may# be using. Change them to reflect where you have installed your# compilers.export GCC_PATH=/usr/binexport TEMP=/tmp TMP=/tmp# Add the Scitech bin path to the current PATHexport PATH=$SCITECH/bin:$SCITECH/bin-linux:$PATHif [ "x$LIBC" = x ]; then	export PATH=$SCITECH/bin-linux/glibc:$PATHelse	export PATH=$SCITECH/bin-linux/libc:$PATHfi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -