libmill icon indicating copy to clipboard operation
libmill copied to clipboard

More compiler issues...

Open mobiliodevelopment opened this issue 4 years ago • 0 comments

Yesterday i've fix one compiling bug. But seems that there are lot more.

Here is example - ARM, 32 bit, static, GCC 8.3

./configure --enable-debug --enable-shared=false --enable-static
make check
============================================================================
Testsuite summary for libmill 1.18-3-g2dd13ae
============================================================================
# TOTAL: 18
# PASS:  18
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================

ARM, 32 bit, dynamic, GCC 8.3

./configure --enable-debug
make check
============================================================================
Testsuite summary for libmill 1.18-3-g2dd13ae
============================================================================
# TOTAL: 18
# PASS:  18
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0
============================================================================

Now without same without debug:

./configure
============================================================================
Testsuite summary for libmill 1.18-3-g2dd13ae
============================================================================
# TOTAL: 18
# PASS:  16
# SKIP:  0
# XFAIL: 0
# FAIL:  2
# XPASS: 0
# ERROR: 0
============================================================================

(failed was udp and tcp)

Same test on Ubuntu 20.04 LTS, 64 bit, GCC 9.3.0:

============================================================================
Testsuite summary for libmill 1.18-3-g2dd13ae
============================================================================
# TOTAL: 18
# PASS:  4
# SKIP:  0
# XFAIL: 0
# FAIL:  14
# XPASS: 0
# ERROR: 0
============================================================================

(only that passed was UDP, IP, FILE and SSL).

I've starting to digging why this happens and will publish patches as soon as i was able to fix something.

mobiliodevelopment avatar Feb 09 '21 11:02 mobiliodevelopment