You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
When checking the logs after a Fedora mass rebuild using gcc 10, i came acros a link failure in speech_tools. You needed to add -fnocommon to the gcc args to fix it.
The error was:
Link Shared Library estools
if [ -n "" ] ; then libs=' -lncurses -lasound -ldl -lm -lstdc++
-fopenmp ' ; fi ;\
gcc -shared -o libestools.so.2.5.0.1 shared_space/*.o $libs
/usr/bin/ld: shared_space/siodeditline.o:(.data.rel.local+0x8): multiple
definition of `editline_history_file';
shared_space/editline.o:(.bss+0x28): first defined here
collect2: error: ld returned 1 exit status
The text was updated successfully, but these errors were encountered:
UPDATE: actually after that patch, it failed further at:
/usr/bin/ld: ../lib/libestbase.a(list_s_t.o):(.bss+0x8): multiple definition of `EST_TItem<EST_String>::s_free'; list_regression.o:(.bss+0x8): first defined here
/usr/bin/ld: ../lib/libestbase.a(list_s_t.o):(.bss+0x0): multiple definition of `EST_TItem<EST_String>::s_nfree'; list_regression.o:(.bss+0x0): first defined here
/usr/bin/ld: ../lib/libestbase.a(list_s_t.o):(.bss+0x4): multiple definition of `EST_TItem<EST_String>::s_maxFree'; list_regression.o:(.bss+0x4): first defined here
collect2: error: ld returned 1 exit status
make[1]: *** [../config/rules/test_make_rules.mak:131: list_regression] Error 1
make: *** [config/rules/targets.mak:57: testsuite] Error 2
==> ERROR: A failure occurred in build().
Hello.
When checking the logs after a Fedora mass rebuild using gcc 10, i came acros a link failure in speech_tools. You needed to add -fnocommon to the gcc args to fix it.
The error was:
The text was updated successfully, but these errors were encountered: