You are not logged in.
Pages: 1
Hello,
I just need to install the android sdk and I need to enable the multilib repo first. I followed the instructions on the wiki but I get: target not found when: pacman -S gcc-multilib.
Any ideas? I synced mirrors and
[multilib]
Include = /etc/pacman.d/mirrorlist
Thanks!
Offline
pacman -Syy
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
nothing
Offline
When you type the above one, does it show (and update) all the mirrors, including multilib? What output do you get?
Last edited by bohoomil (2012-01-28 19:57:57)
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
When you type the above one, does it show (and update) all the mirrors, including multilib?
How do I check that? It only shows up core/extra/community
Offline
pacman -Syy
:: Synchronising package databases...
core 106.4 KiB 197K/s 00:01 [----------------------] 100%
extra 1193.5 KiB 205K/s 00:06 [----------------------] 100%
community 1043.7 KiB 202K/s 00:05 [----------------------] 100%
multilib 77.7 KiB 211K/s 00:00 [----------------------] 100% <<< This
Last edited by Earnestly (2012-01-28 20:03:13)
Offline
Well, just the usual way: what you can see in your terminal window.
Edit: Thx Kaustic for visual aid.
Last edited by bohoomil (2012-01-28 20:05:12)
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
pacman -Syy :: Synchronising package databases... core 106.4 KiB 197K/s 00:01 [----------------------] 100% extra 1193.5 KiB 205K/s 00:06 [----------------------] 100% community 1043.7 KiB 202K/s 00:05 [----------------------] 100% multilib 77.7 KiB 211K/s 00:00 [----------------------] 100% <<< This
It doesn't
I have simply uncommented:
#[multilib]
#SigLevel = PackageOptional
Include = /etc/pacman.d/mirrorlist
and run sudo pacman -Syy, but it doesn't show up syncing..
Offline
Hey! Have you checked how we use repos in pacman.conf? :-|
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
Hey! Have you checked how we use repos in pacman.conf? :-|
Any tips?
Offline
Wrrrr... This hash, this HASH!
Not:
#[multilib]
but
[multilib]
...for all Archers' sake.
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
Wrrrr... This hash, this HASH!
Not:
#[multilib]
but
[multilib]
...for all Archers' sake.
Argh.. ty!
Offline
Make as solved if it worked btw
Offline
So when I'm done with android-sdk and need to revert to installing 64bit packages only again, just recomment multilib and makepkg.conf?
Offline
Don't. When you install packages from multilib, you'll need to update them using the same repo.
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
ok, but how do I seperate them? I mean when I need to only install 64 or 32 binaries?
Offline
You don't have to. Your $ARCH is x86_64. Multilib simply means that you can use 32 bit routines alongside the 'mainline' 64. Simply leave it as it is: it's well devised and so it works.
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
hm.. should I change something within yaourt as well? I get: package android-sdk-i686 does not have a valid arch.
Offline
If you are going to use this one, it should build fine. I can only recommend preparing the packaged manually, i.e. downloading the tarball, extracting and running makepkg -- and, where necessary, installing lib32-* dependencies. All that's lib32- sensitive is listed in the PKGBUILD as
[[ $CARCH = x86_64 ]] && depends=(blah blah)
:: Registered Linux User No. 223384
:: github
:: infinality-bundle+fonts: good looking fonts made easy
Offline
If you run into compability issues with 32bit apps, setup a minimal 32bit Chroot (https://wiki.archlinux.org/index.php/Sc … bit_System). This way may sound more complex, but once it's running you won't have to worry about 32bit apps. Just use an alias for starting the 32bit apps.
Offline
Pages: 1