Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 463348 - app-text/rarian-0.8.1-r2 build fails with libtool: eval: line 4402: syntax error near unexpected token `|'
Summary: app-text/rarian-0.8.1-r2 build fails with libtool: eval: line 4402: syntax er...
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: AMD64 Linux
: Normal normal (vote)
Assignee: Gentoo Linux bug wranglers
URL:
Whiteboard:
Keywords:
: 443838 459592 464628 512458 512460 512462 512464 (view as bug list)
Depends on:
Blocks:
 
Reported: 2013-03-26 11:19 UTC by Richard Freeman
Modified: 2014-06-05 11:20 UTC (History)
3 users (show)

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


Attachments
build.log (build.log,21.18 KB, text/plain)
2013-03-26 11:20 UTC, Richard Freeman
Details
emerge --info '=app-text/rarian-0.8.1-r2' (einfo.txt,7.42 KB, text/plain)
2013-03-26 11:21 UTC, Richard Freeman
Details
emerge -pqv '=app-text/rarian-0.8.1-r2' (epqv.txt,72 bytes, text/plain)
2013-03-26 11:21 UTC, Richard Freeman
Details
environment (env.txt,91.14 KB, text/plain)
2013-03-26 11:22 UTC, Richard Freeman
Details
config.log (config.log,47.86 KB, text/plain)
2013-03-26 15:03 UTC, Richard Freeman
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Richard Freeman gentoo-dev 2013-03-26 11:19:26 UTC
This could be a libtool issue, but I do not have ccache installed.  I see a recent similar notify-python issue, but since that appears to be package-related I wanted to log this separately as it will undoubtedly be fixed separately.

Relevant portion of log (full logs/etc attached):
/usr/bin/nm -B  .libs/librarian_la-rarian-main.o .libs/librarian_la-rarian-reg-utils.o .libs/librarian_la-rarian-language.o .libs/librarian_la-rarian-utils.o .libs/librarian_la-rarian-info.o .libs/librarian_la-rarian-man.o .libs/rarian-omf.o .libs/tinyxml.o .libs/tinyxmlparser.o .libs/tinystr.o .libs/tinyxmlerror.o  |  | /bin/sed 's/.* //' | sort | uniq > .libs/librarian.exp
../libtool: eval: line 4402: syntax error near unexpected token `|'
../libtool: eval: line 4402: `/usr/bin/nm -B  .libs/librarian_la-rarian-main.o .libs/librarian_la-rarian-reg-utils.o .libs/librarian_la-rarian-language.o .libs/librarian_la-rarian-utils.o .libs/librarian_la-rarian-info.o .libs/librarian_la-rarian-man.o .libs/rarian-omf.o .libs/tinyxml.o .libs/tinyxmlparser.o .libs/tinystr.o .libs/tinyxmlerror.o  |  | /bin/sed 's/.* //' | sort | uniq > .libs/librarian.exp'
make[2]: *** [librarian.la] Error 2
make[2]: Leaving directory `/var/tmp/portage/app-text/rarian-0.8.1-r2/work/rarian-0.8.1/librarian'


Reproducible: Always
Comment 1 Richard Freeman gentoo-dev 2013-03-26 11:20:52 UTC
Created attachment 343296 [details]
build.log
Comment 2 Richard Freeman gentoo-dev 2013-03-26 11:21:32 UTC
Created attachment 343298 [details]
emerge --info '=app-text/rarian-0.8.1-r2'
Comment 3 Richard Freeman gentoo-dev 2013-03-26 11:21:49 UTC
Created attachment 343300 [details]
emerge -pqv '=app-text/rarian-0.8.1-r2'
Comment 4 Richard Freeman gentoo-dev 2013-03-26 11:22:14 UTC
Created attachment 343302 [details]
environment
Comment 5 Rafał Mużyło 2013-03-26 14:45:52 UTC
> checking command to parse /usr/bin/nm -B output from x86_64-pc-linux-gnu-gcc object... failed
That's most likely *not* package specific.
Attach config.log - though it might not give a definite answer (that's not a preprocessor/compiler test).
Comment 6 Richard Freeman gentoo-dev 2013-03-26 15:03:55 UTC
Created attachment 343316 [details]
config.log
Comment 7 Rafał Mużyło 2013-03-26 15:47:24 UTC
configure:6518: x86_64-pc-linux-gnu-gcc -o conftest -march=amdfam10 -Os -pipe -frename-registers -fweb -freorder-blocks -freorder-blocks-and-partition -flto -funit-at-a-time -ftree-pre -fgcse-sm -fgcse-las -fgcse-after-reload -fmerge-all-constants -ftree-vectorize -ftree-parallelize-loops=4 -mabm -msse4a  -Wl,-O1 -Wl,--as-needed -Wl,--as-needed conftest.c conftstm.o >&5
conftest.c:7:12: error: function 'nm_test_func' redeclared as variable
conftest.c:5:6: note: previously declared here
conftest.c:6:12: warning: type of 'nm_test_var' does not match original declaration [enabled by default]
conftest.c:4:6: note: previously declared here
lto1: fatal error: errors during merging of translation units
compilation terminated.
lto-wrapper: /usr/x86_64-pc-linux-gnu/gcc-bin/4.6.3/x86_64-pc-linux-gnu-gcc returned 1 exit status
/usr/lib/gcc/x86_64-pc-linux-gnu/4.6.3/../../../../x86_64-pc-linux-gnu/bin/ld: lto-wrapper failed
collect2: ld returned 1 exit status

This doesn't tell much (unless it's a case of excessive CFLAGS).

Going by the macro (from libtool 2.4.2) the failing program is:
#ifdef __cplusplus
extern "C" {
#endif
char nm_test_var;
void nm_test_func(void);
void nm_test_func(void){}
#ifdef __cplusplus
}
#endif
int main(){nm_test_var='a';nm_test_func();return(0);}

- not really something that could fail.
Comment 8 Richard Freeman gentoo-dev 2013-03-26 17:11:19 UTC
Indeed, that seems to be it.  Builds fine with:
-march=amdfam10 -Os -pipe -frename-registers -fweb

Not sure why I didn't think to test that before reporting.
Comment 9 Tom Wijsman (TomWij) (RETIRED) gentoo-dev 2013-04-04 21:17:33 UTC
*** Bug 464628 has been marked as a duplicate of this bug. ***
Comment 10 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:18:06 UTC
*** Bug 512458 has been marked as a duplicate of this bug. ***
Comment 11 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:19:33 UTC
*** Bug 512464 has been marked as a duplicate of this bug. ***
Comment 12 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:19:43 UTC
*** Bug 512462 has been marked as a duplicate of this bug. ***
Comment 13 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:19:54 UTC
*** Bug 512460 has been marked as a duplicate of this bug. ***
Comment 14 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:20:04 UTC
*** Bug 459592 has been marked as a duplicate of this bug. ***
Comment 15 Jeroen Roovers (RETIRED) gentoo-dev 2014-06-05 11:20:40 UTC
*** Bug 443838 has been marked as a duplicate of this bug. ***