abyss icon indicating copy to clipboard operation
abyss copied to clipboard

Build fails with LTO

Open eli-schwartz opened this issue 3 months ago • 10 comments

I tried to build abyss-2.3.4 with the following *FLAGS to optimize the build: -flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing

Note the -Werror=* flags are used to help detect cases where the compiler tries to optimize by assuming UB cannot exist in the source code -- if it does exist, ordinarily the code would be miscompiled, and this says to make the miscompilation a fatal error.

I got this build error:

x86_64-pc-linux-gnu-gcc  -march=native -fstack-protector-all -O2 -pipe -fdiagnostics-color=always -frecord-gcc-switches -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-clash-protection -flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing  -Wformat -Werror=format-security -Werror=implicit-function-declaration -Werror=implicit-int -Werror=int-conversion -Werror=incompatible-pointer-types  -Wl,-O1 -Wl,--as-needed -flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing -Wl,--defsym=__gentoo_check_ldflags__=0 -o dialign museq.o libdialign.a -ldl -lm 
museq.c:58:13: error: type of ‘simple_aligner’ does not match original declaration [-Werror=lto-type-mismatch]
   58 | extern int  simple_aligner(struct seq_col *scol, struct diag_col *dcol,
      |             ^
assemble.c:398:6: note: return value type mismatch
  398 | char simple_aligner(struct seq_col *scol, struct diag_col *dcol,
      |      ^
assemble.c:398:6: note: type ‘char’ should match type ‘int’
assemble.c:398:6: note: ‘simple_aligner’ was previously declared here
lto1: some warnings being treated as errors
lto-wrapper: fatal error: x86_64-pc-linux-gnu-gcc returned 1 exit status
compilation terminated.
/usr/lib/gcc/x86_64-pc-linux-gnu/13/../../../../x86_64-pc-linux-gnu/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status

Originally reported downstream: https://bugs.gentoo.org/862252 Full build log: build.log

eli-schwartz avatar Mar 08 '24 01:03 eli-schwartz

@parham-k / @jwcodee - Could one of you please take a look at this?

lcoombe avatar Mar 19 '24 20:03 lcoombe

Pinging @parham-k / @jwcodee

lcoombe avatar Apr 02 '24 15:04 lcoombe

Thanks for flagging this issue. We will be looking to implement a fix to address this issue.

jwcodee avatar Apr 05 '24 21:04 jwcodee

@eli-schwartz can you see if https://github.com/bcgsc/abyss/tree/tlo addresses your issue?

jwcodee avatar Apr 10 '24 20:04 jwcodee

There are 3 definitions:

  • dialign/museq.c: extern int simple_aligner
  • dialign/assemble.c: char simple_aligner
  • Align/dialign.h: char simple_aligner

It looks like your tree changes the second one from char to int, which means now the third is the odd one out.

eli-schwartz avatar Apr 10 '24 23:04 eli-schwartz

I noticed that too, but I didn't see assemble.c including the dialign.h header so I didn't change the char there.

What parts of the build script did you add the following flags: -flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing?

jwcodee avatar Apr 11 '24 05:04 jwcodee

I noticed that too, but I didn't see assemble.c including the dialign.h header so I didn't change the char there.

I don't think it has to? assemble.c has the (only) function implementation and that appears early on in the file before any actual uses.

What parts of the build script did you add the following flags: -flto=4 -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing?

It was exported before running configure, so it applies to all sources.

eli-schwartz avatar Apr 11 '24 05:04 eli-schwartz

Keep in mind that what LTO is doing here is simply being a massively global optimization pass that is able to keep track of the entire linked program, including full type info, all at the same time. This means that it can double check that the symbol from assemble.c is compatible with the prototype in dialign.h and the additional prototype in museq.c

Since they are all referring to the same outputted machine code symbol anyway, they have to be compatible or the compiler might generate faulty code. Often, this passes silently if prototypes are incorrect. Due to the greatly expanded tracking capabilities afforded by the LTO optimizer, it is simply able to provide better diagnostics and uncover otherwise very hard to find issues.

eli-schwartz avatar Apr 11 '24 06:04 eli-schwartz

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your interest in ABySS!

github-actions[bot] avatar May 03 '24 01:05 github-actions[bot]

Any updates on this, @jwcodee ?

lcoombe avatar May 03 '24 15:05 lcoombe