gcc-cross/openeuler_gcc_arm64le/openeuler_gcc_update_sourcecode.sh
wangding16 8a429e2fef [gcc-cross] init gcc-cross build script
GCC cross compilation tool chain for embedded openEuler OS,
contains arm32 and arm64 architectures.
2022-03-21 11:55:29 +08:00

40 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
set -e
set -x
readonly ROOT_TOUCH_SRC="$PWD/../../open_source"
source $PWD/../config.xml
#[task 002/007] touch .info files in source code for binutils
find $ROOT_TOUCH_SRC/$BINUTILS/$BINUTILS_DIR -name "*.info"|xargs -i bash -c "touch {}"
touch $ROOT_TOUCH_SRC/$BINUTILS/$BINUTILS_DIR/binutils/doc/binutils.texi
find $ROOT_TOUCH_SRC/$BINUTILS/$BINUTILS_DIR -name "*.1"|xargs -i bash -c "touch {}"
touch $ROOT_TOUCH_SRC/$GCC/$GCC_DIR/gcc/config/aarch64/iterators.md
find $ROOT_TOUCH_SRC/$GCC/$GCC_DIR -name "*.1"|xargs -i bash -c "touch {}"
find $ROOT_TOUCH_SRC/$GCC/$GCC_DIR -name "*.info"|xargs -i bash -c "touch {}"
touch $ROOT_TOUCH_SRC/$GLIBC/$GLIBC_DIR/locale/programs/*-kw.h
touch $ROOT_TOUCH_SRC/$MPFR/$MPFR_DIR/*.m4
touch $ROOT_TOUCH_SRC/$MPFR/$MPFR_DIR/configure
touch $ROOT_TOUCH_SRC/$MPFR/$MPFR_DIR/Makefile.*
touch $ROOT_TOUCH_SRC/$MPFR/$MPFR_DIR/doc/*
touch $ROOT_TOUCH_SRC/$GMP/$GMP_DIR/*.m4
touch $ROOT_TOUCH_SRC/$GMP/$GMP_DIR/configure
touch $ROOT_TOUCH_SRC/$GMP/$GMP_DIR/Makefile.*
touch $ROOT_TOUCH_SRC/$GMP/$GMP_DIR/doc/*
touch $ROOT_TOUCH_SRC/$MPC/$MPC_DIR/*.m4
touch $ROOT_TOUCH_SRC/$MPC/$MPC_DIR/configure
touch $ROOT_TOUCH_SRC/$MPC/$MPC_DIR/Makefile.*
touch $ROOT_TOUCH_SRC/$MPC/$MPC_DIR/doc/*
touch $ROOT_TOUCH_SRC/$ISL/$ISL_DIR/*.m4
touch $ROOT_TOUCH_SRC/$ISL/$ISL_DIR/configure
touch $ROOT_TOUCH_SRC/$ISL/$ISL_DIR/Makefile.*