diff options
author | davidovski <david@davidovski.xyz> | 2022-01-30 23:29:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-30 23:29:51 +0000 |
commit | 5c3c09448a493ae6ae273e7fba6e2ed4487cd272 (patch) | |
tree | 0ebfacf5f68f8937e94a8cac726b5e327a15dff0 /repo | |
parent | f1c48b642f4ea1deacf752baf3574db94d02f2cd (diff) |
fixed deps for gcc
Diffstat (limited to 'repo')
-rw-r--r-- | repo/devel/gcc.xibuild | 4 | ||||
-rw-r--r-- | repo/system/binutils.xibuild | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/repo/devel/gcc.xibuild b/repo/devel/gcc.xibuild index d89d9c3..57d6dae 100644 --- a/repo/devel/gcc.xibuild +++ b/repo/devel/gcc.xibuild @@ -1,7 +1,7 @@ #!/bin/bash -MAKEDEPS=(grep make gmp mpfr mpc binutils) -DEPS=(glibc) +MAKEDEPS=(grep make gmp mpfr libxml2) +DEPS=(glibc binutils mpc) PKG_VER=11.2.0 SOURCE=https://ftp.gnu.org/gnu/gcc/gcc-$PKG_VER/gcc-$PKG_VER.tar.xz diff --git a/repo/system/binutils.xibuild b/repo/system/binutils.xibuild index 3c4717b..a0f4ce2 100644 --- a/repo/system/binutils.xibuild +++ b/repo/system/binutils.xibuild @@ -1,7 +1,7 @@ #!/bin/bash MAKEDEPS=(make ) -DEPS=(zlib elfutils) +DEPS=(glibc zlib elfutils) PKG_VER=2.37 SOURCE=https://ftp.gnu.org/gnu/binutils/binutils-$PKG_VER.tar.xz |