Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 109729 - "tcc" ebuild out of date.
Summary: "tcc" ebuild out of date.
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Maintainers for Miscelleneous Language Packages [OBSOLETE]
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-18 12:38 UTC by Alan Grimes
Modified: 2006-03-28 16:51 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Alan Grimes 2005-10-18 12:38:03 UTC
As of this date the current tcc is 0.9.23, current e-build is 0.9.22. 

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 George Shapovalov (RETIRED) gentoo-dev 2006-01-08 09:43:30 UTC
Ok, here you go. New version is in portage now.
The installation scripts have changed, probably in order to accommodate new Win32 target, so I had to pass tccdir to make install. Also, it apparently was previously ignoring libdir and includedir, but not anymore. So now stuff that was under /usr/lib/tcc will go, appropriately, into /usr/lib and /usr/include..
Please post to this bug if this is undesirable for this package (but then please state why).

George
Comment 2 Martin Holly 2006-03-28 16:51:34 UTC
It is undesirable, because tcc still expects its own libs and includes to be in /usr/lib/tcc or /usr/lib/tcc/include, so tccdir should be /usr/lib/tcc instead of /usr/lib:

cat > example.c
#include <stdio.h>
int main(void) { return 0; }

tcc example.c
In file included from example.c:1:
/usr/include/stdio.h:34: include file 'stddef.h' not found