| Summary: | dev-libs/djb: C(XX)FLAGS are ignored (at src_configure/compile) | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
| Component: | New packages | Assignee: | No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it <maintainer-needed> |
| Status: | RESOLVED INVALID | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Diego Elio Pettenò (RETIRED)
2008-10-06 09:01:29 UTC
In this situation your tests were wrong and i'm closing this bug as invalid. The ebuild does:
for cc in */conf-cc ; do echo "$(tc-getCC) ${CFLAGS}" > ${cc} ; done
And the builsystem itself:
( cat warn-auto.sh; \
echo exec "`head -n 1 conf-cc`" '-c ${1+"$@"}' \
) > compile
chmod 755 compile
./compile byte_chr.c
where ./compile script looks like:
exec x86_64-pc-linux-gnu-gcc -O2 -pipe -march=nocona -c ${1+"$@"}
|