You are not logged in.

#1 2011-07-19 13:20:35

Oxpo
Member
Registered: 2011-07-19
Posts: 11

error: target not found: gcc-multilib

it is not in AUR anymore,

I tried adding;

"
[multilib]
Include = /etc/pacman.d/mirrorlist
"

to pacman.conf and got bunch of not found errors.

Last edited by Oxpo (2011-07-19 13:24:55)

Offline

#2 2011-07-19 13:25:40

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: error: target not found: gcc-multilib

http://www.archlinux.org/packages/?sort … =&limit=50
It's in the [multilib] repo.

Please post the exact errors. Maybe you're trying to download an older version which has been removed already?
Please update your mirrolist http://www.archlinux.org/mirrorlist/ , run 'pacman -Syyu' and try again.

Offline

#3 2011-07-19 13:25:58

bernarcher
Forum Fellow
From: Germany
Registered: 2009-02-17
Posts: 2,281

Re: error: target not found: gcc-multilib

It is there in multilib:

$ pacman -Ss gcc-multilib
multilib/gcc-multilib 4.6.1-2 [17.53 MB] (multilib-devel) [installed]
    The GNU Compiler Collection - C and C++ frontends for multilib

Are your mirrors up to date?
Did you a "pacman -Syy" after adding the [multilib] section? You need to, otherwise pacman won't recognise the proper database.

Edit: karol beat me by seconds. sad

Last edited by bernarcher (2011-07-19 13:26:53)


To know or not to know ...
... the questions remain forever.

Offline

#4 2011-07-19 13:32:17

Oxpo
Member
Registered: 2011-07-19
Posts: 11

Re: error: target not found: gcc-multilib

[root@myhost conf.d]# pacman -Syy
:: Synchronizing package databases...
 core                     35.6K  100.1K/s 00:00:00 [######################] 100%
 extra                   468.5K  430.9K/s 00:00:01 [######################] 100%
 community               451.1K  435.7K/s 00:00:01 [######################] 100%
error: failed retrieving file 'multilib.db' from mirrors.kernel.org : File unavailable (e.g., file not found, no access)
error: failed retrieving file 'multilib.db' from mirrors.kernel.org : File unavailable (e.g., file not found, no access)
error: failed retrieving file 'multilib.db' from mirrors.kernel.org : Not Found
error: failed retrieving file 'multilib.db' from cake.lib.fit.edu : File unavailable (e.g., file not found, no access)
error: failed retrieving file 'multilib.db' from cake.lib.fit.edu : Not Found
error: failed retrieving file 'multilib.db' from mirror.ece.vt.edu : Not Found
error: failed retrieving file 'multilib.db' from ftp.archlinux.org : File unavailable (e.g., file not found, no access)
error: failed to update multilib (File unavailable (e.g., file not found, no access))

pacman.conf

[root@myhost conf.d]# cat /etc/pacman.conf 
#
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives

#
# GENERAL OPTIONS
#
[options]
# The following paths are commented out with their default values listed.
# If you wish to use different paths, uncomment and update the paths.
#RootDir     = /
#DBPath      = /var/lib/pacman/
#CacheDir    = /var/cache/pacman/pkg/
#LogFile     = /var/log/pacman.log
HoldPkg     = pacman glibc
# If upgrades are available for these packages they will be asked for first
SyncFirst   = pacman
#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
#XferCommand = /usr/bin/curl -C - -f %u > %o
#CleanMethod = KeepInstalled
Architecture = auto

# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
#IgnorePkg   =
#IgnoreGroup =

#NoUpgrade   =
#NoExtract   =

# Misc options (all disabled by default)
#UseSyslog
#ShowSize
#UseDelta
#TotalDownload
#CheckSpace

#
# REPOSITORIES
#   - can be defined here or included from another file
#   - pacman will search repositories in the order defined here
#   - local/custom mirrors can be added here or in separate files
#   - repositories listed first will take precedence when packages
#     have identical names, regardless of version number
#   - URLs will have $repo replaced by the name of the current repo
#   - URLs will have $arch replaced by the name of the architecture
#
# Repository entries are of the format:
#       [repo-name]
#       Server = ServerName
#       Include = IncludePath
#
# The header [repo-name] is crucial - it must be present and
# uncommented to enable the repo.
#

# The testing repositories are disabled by default. To enable, uncomment the
# repo name header and Include lines. You can add preferred servers immediately
# after the header, and they will be used before the default mirrors.

#[testing]
#Include = /etc/pacman.d/mirrorlist

[core]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

#[community-testing]
#Include = /etc/pacman.d/mirrorlist

[community]
Include = /etc/pacman.d/mirrorlist

# An example of a custom package repository.  See the pacman manpage for
# tips on creating your own repositories.
#[custom]
#Server = file:///home/custompkgs

[multilib]
Include = /etc/pacman.d/mirrorlist

thanks for very fast replies

Last edited by Oxpo (2011-07-19 13:33:10)

Offline

#5 2011-07-19 14:11:14

Allan
Pacman
From: Brisbane, AU
Registered: 2007-06-09
Posts: 11,390
Website

Re: error: target not found: gcc-multilib

You are using x86_64?

Offline

#6 2011-07-19 14:25:40

Oxpo
Member
Registered: 2011-07-19
Posts: 11

Re: error: target not found: gcc-multilib

Allan wrote:

You are using x86_64?

no

Offline

#7 2011-07-19 14:39:09

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: error: target not found: gcc-multilib

Oxpo wrote:
Allan wrote:

You are using x86_64?

no

Ah, so what makes you think you need this package?
https://wiki.archlinux.org/index.php/Of … ultilib.5D
multilib is for running 32-bit apps on a 64-bit system.

Last edited by karol (2011-07-19 14:46:43)

Offline

#8 2011-07-19 15:45:29

bernarcher
Forum Fellow
From: Germany
Registered: 2009-02-17
Posts: 2,281

Re: error: target not found: gcc-multilib

Oxpo wrote:
Allan wrote:

You are using x86_64?

no

As karol told you: In this case multilib is of no use to you. And you do not need gcc-multilib. Plain gcc from the core base-devel group suffices.

Last edited by bernarcher (2011-07-19 15:47:49)


To know or not to know ...
... the questions remain forever.

Offline

#9 2011-07-19 19:56:45

Oxpo
Member
Registered: 2011-07-19
Posts: 11

Re: error: target not found: gcc-multilib

but "TrueType font rendering library (32-bit) with infinality patch" from aur keeps asking for it

Offline

#10 2011-07-19 19:59:59

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: error: target not found: gcc-multilib

Oxpo wrote:

but "TrueType font rendering library (32-bit) with infinality patch" from aur keeps asking for it

You mean the lib32-freetype2-git-infinality one? See that 'lib32-' - thats for multilib.

http://aur.archlinux.org/packages.php?ID=49730 this ones is for you.

Offline

Board footer

Powered by FluxBB