Skip to content

Commit

Permalink
Merge branch 'feat-dynamic-link' of https://github.com/DragonOS-Commu…
Browse files Browse the repository at this point in the history
…nity/DragonOS into feat-dynamic-link
  • Loading branch information
fslongjin committed Nov 11, 2024
2 parents 9c1ca44 + 182a355 commit c157070
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions user/apps/glibc/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
glibc-2.40
glibc-2.40.tar.gz
glibc-2.35
glibc-2.35.tar.gz
14 changes: 7 additions & 7 deletions user/apps/glibc/exec.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
if [ ! -f "glibc-2.40.tar.gz" ]; then
wget https://ftp.gnu.org/gnu/glibc/glibc-2.40.tar.gz
if [ ! -f "glibc-2.35.tar.gz" ]; then
wget https://ftp.gnu.org/gnu/glibc/glibc-2.35.tar.gz
fi
if [ ! -d "glibc-2.40" ]; then
tar -xvf glibc-2.40.tar.gz
cp ./install_deps.sh ./glibc-2.40/
cp ./default_configure.sh ./glibc-2.40/
if [ ! -d "glibc-2.35" ]; then
tar -xvf glibc-2.35.tar.gz
cp ./install_deps.sh ./glibc-2.35/
cp ./default_configure.sh ./glibc-2.35/
fi
cd glibc-2.40
cd glibc-2.35
bash install_deps.sh
bash default_configure.sh
cd build
Expand Down

0 comments on commit c157070

Please sign in to comment.