Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

coin-cbc: add 2.10.8 + conan v2 support #15839

Closed
wants to merge 7 commits into from

Conversation

SpaceIm
Copy link
Contributor

@SpaceIm SpaceIm commented Feb 9, 2023

this PR requires #15746, #15834, #15836 & #15838 (fix pkg_config_name for PkgConfigDeps).

closes #19478


@ericLemanissierBot
Copy link

ericLemanissierBot commented Feb 9, 2023

I detected other pull requests that are modifying coin-cbc/all recipe:

This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there.

@conan-center-bot

This comment has been minimized.

@SpaceIm SpaceIm changed the title coin-cbc: conan v2 support coin-cbc: add 2.10.8 + conan v2 support Feb 9, 2023
@ericLemanissierBot ericLemanissierBot mentioned this pull request Feb 21, 2023
3 tasks
@stale
Copy link

stale bot commented Mar 12, 2023

This pull request 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 contributions.

@stale stale bot added the stale label Mar 12, 2023
@SpaceIm
Copy link
Contributor Author

SpaceIm commented Mar 21, 2023

This PR is not dead, it needs other PRs which are waiting reviewers...

@SpaceIm SpaceIm closed this Mar 21, 2023
@SpaceIm SpaceIm reopened this Mar 21, 2023
@stale stale bot removed the stale label Mar 21, 2023
@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@stale
Copy link

stale bot commented May 8, 2023

This pull request 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 contributions.

@stale stale bot added the stale label May 8, 2023
@CLAassistant
Copy link

CLAassistant commented May 18, 2023

CLA assistant check
All committers have signed the CLA.

@stale stale bot removed the stale label May 18, 2023
@oleurodecision oleurodecision mentioned this pull request May 25, 2023
3 tasks
@stale
Copy link

stale bot commented Jun 18, 2023

This pull request 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 contributions.

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@stale
Copy link

stale bot commented Aug 7, 2023

This pull request 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 contributions.

@stale stale bot added the stale label Aug 7, 2023
@SpaceIm SpaceIm closed this Aug 29, 2023
@SpaceIm SpaceIm reopened this Aug 29, 2023
@SpaceIm SpaceIm closed this Aug 29, 2023
@SpaceIm SpaceIm reopened this Aug 29, 2023
@stale stale bot removed the stale label Aug 29, 2023
@SpaceIm
Copy link
Contributor Author

SpaceIm commented Aug 29, 2023

Well when I see this command in build log of conan v1 pipeline, I understand these undefined references on Linux:

/usr/bin/g++ -m64 -fPIC -g -DCBC_BUILD -m64 -o cbc CoinSolve.o  ./.libs/libCbcSolver.a -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-clp/1.17.7/_/_/package/369e3ea14e58ed868c0163b56c48049e3250eab8/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-osi/0.108.7/_/_/package/c13f9c9fe9c03a0bfc2a68d8f8e27df7dbbd05b0/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/bzip2/1.0.8/_/_/package/a5fb342591cd091faa8b36194fe6a476ae195f44/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/zlib/1.2.13/_/_/package/b1b85bfdc2206d81b3ed6a49e78498182bb98ef3/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cgl/0.60.6/_/_/package/38b4caea114bf67718bee18b5fe226a6093f47c1/lib /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug/Cbc/src/.libs/libCbc.a ./.libs/libCbc.a -lCgl -lCoinUtils -lm -lbz2 -lz -lOsi -lOsiCommonTests -lClpSolver -lClp -lOsiClp

For some reason, libs are not properly sorted.

See at the end:

  -lCgl
  -lCoinUtils
  -lm
  -lbz2
  -lz
  -lOsi
  -lOsiCommonTests
  -lClpSolver
  -lClp
  -lOsiClp

But it should be:

  -lCgl
  -lOsiClp
  -lClpSolver
  -lClp
  -lOsiCommonTests
  -lOsi
  -lCoinUtils
  -lm
  -lbz2
  -lz

@conan-center-bot

This comment has been minimized.

@conan-center-bot

This comment has been minimized.

@conan-center-bot
Copy link
Collaborator

Conan v1 pipeline ❌

Failure in build 4 (c3ce48dda89ead0b239396e44f28fe9b210e7d87):

  • coin-cbc/2.10.5:
    Didn't run or was cancelled before finishing

  • coin-cbc/2.10.8:
    CI failed to create some packages (All logs)

    Logs for packageID 967138bd48a5d716a011a2a51f6affbb66e8ab9c:
    [settings]
    arch=x86_64
    build_type=Debug
    compiler=gcc
    compiler.libcxx=libstdc++11
    compiler.version=5
    os=Linux
    [options]
    coin-cbc:shared=False
    
    [...]
    /bin/bash ../../libtool --tag=CXX --mode=link /usr/bin/g++  -m64 -fPIC -g   -DCBC_BUILD  -m64 -o cbc -no-undefined -version-info 13:8:10 CoinSolve.o libCbcSolver.la libCbc.la -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-clp/1.17.7/_/_/package/369e3ea14e58ed868c0163b56c48049e3250eab8/lib -lOsiClp -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/bzip2/1.0.8/_/_/package/a5fb342591cd091faa8b36194fe6a476ae195f44/lib -lbz2 -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/zlib/1.2.13/_/_/package/b1b85bfdc2206d81b3ed6a49e78498182bb98ef3/lib -lz -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-osi/0.108.7/_/_/package/c13f9c9fe9c03a0bfc2a68d8f8e27df7dbbd05b0/lib -lOsiCommonTests -lClpSolver -lClp -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib -lCoinUtils -lm -lOsi -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cgl/0.60.6/_/_/package/38b4caea114bf67718bee18b5fe226a6093f47c1/lib -lCgl -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-osi/0.108.7/_/_/package/c13f9c9fe9c03a0bfc2a68d8f8e27df7dbbd05b0/lib -lOsiCommonTests -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-clp/1.17.7/_/_/package/369e3ea14e58ed868c0163b56c48049e3250eab8/lib -lOsiClp -lClpSolver -lClp -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/bzip2/1.0.8/_/_/package/a5fb342591cd091faa8b36194fe6a476ae195f44/lib -lbz2 -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/zlib/1.2.13/_/_/package/b1b85bfdc2206d81b3ed6a49e78498182bb98ef3/lib -lz -lOsi -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib -lCoinUtils -lm   
    /usr/bin/g++ -m64 -fPIC -g -DCBC_BUILD -m64 -o cbc CoinSolve.o  ./.libs/libCbcSolver.a -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-clp/1.17.7/_/_/package/369e3ea14e58ed868c0163b56c48049e3250eab8/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/bzip2/1.0.8/_/_/package/a5fb342591cd091faa8b36194fe6a476ae195f44/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/zlib/1.2.13/_/_/package/b1b85bfdc2206d81b3ed6a49e78498182bb98ef3/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-osi/0.108.7/_/_/package/c13f9c9fe9c03a0bfc2a68d8f8e27df7dbbd05b0/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib -L/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cgl/0.60.6/_/_/package/38b4caea114bf67718bee18b5fe226a6093f47c1/lib /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug/Cbc/src/.libs/libCbc.a ./.libs/libCbc.a -lCgl -lOsiCommonTests -lOsiClp -lClpSolver -lClp -lbz2 -lz -lOsi -lCoinUtils -lm
    Makefile:880: recipe for target 'cbc' failed
    make[3]: Leaving directory '/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug/Cbc/src'
    Makefile:760: recipe for target 'all' failed
    make[2]: Leaving directory '/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug/Cbc/src'
    Makefile:606: recipe for target 'all-recursive' failed
    make[1]: Leaving directory '/home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug/Cbc'
    Makefile:324: recipe for target 'all-recursive' failed
    coin-cbc/2.10.8: 
    configure: WARNING: Failed to find a Fortran compiler!
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/src/configure: line 16386: unavailable: command not found
    ar: `u' modifier ignored since `D' is the default (see `U')
    ar: `u' modifier ignored since `D' is the default (see `U')
    libtool: link: warning: `-version-info' is ignored for programs
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileInput::CoinGzipFileInput(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:213: undefined reference to `gzopen'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileInput::~CoinGzipFileInput()':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:223: undefined reference to `gzclose'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileInput::readRaw(void*, int)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:229: undefined reference to `gzread'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileInput::CoinBzip2FileInput(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:259: undefined reference to `BZ2_bzReadOpen'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileInput::~CoinBzip2FileInput()':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:271: undefined reference to `BZ2_bzReadClose'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileInput::readRaw(void*, int)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:281: undefined reference to `BZ2_bzRead'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileOutput::CoinGzipFileOutput(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:433: undefined reference to `gzopen'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileOutput::~CoinGzipFileOutput()':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:443: undefined reference to `gzclose'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinGzipFileOutput::write(void const*, int)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:448: undefined reference to `gzwrite'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileOutput::CoinBzip2FileOutput(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:479: undefined reference to `BZ2_bzWriteOpen'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileOutput::~CoinBzip2FileOutput()':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:497: undefined reference to `BZ2_bzWriteClose'
    /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/package/0f7f035348591cca3d3fc8d900b586a588dd8bbb/lib/libCoinUtils.a(CoinFileIO.o): In function `CoinBzip2FileOutput::write(void const*, int)':
    /home/conan/w/prod/BuildSingleReference/.conan/data/coin-utils/2.11.6/_/_/build/0f7f035348591cca3d3fc8d900b586a588dd8bbb/src/CoinUtils/src/CoinFileIO.cpp:506: undefined reference to `BZ2_bzWrite'
    collect2: error: ld returned 1 exit status
    make[3]: *** [cbc] Error 1
    make[2]: *** [all] Error 2
    make[1]: *** [all-recursive] Error 1
    make: *** [all-recursive] Error 1
    coin-cbc/2.10.8: WARN: Using the new toolchains and generators without specifying a build profile (e.g: -pr:b=default) is discouraged and might cause failures and unexpected behavior
    coin-cbc/2.10.8: ERROR: Package '967138bd48a5d716a011a2a51f6affbb66e8ab9c' build failed
    coin-cbc/2.10.8: WARN: Build folder /home/conan/w/prod-v1/BuildSingleReference/.conan/data/coin-cbc/2.10.8/_/_/build/967138bd48a5d716a011a2a51f6affbb66e8ab9c/build-debug
    ERROR: coin-cbc/2.10.8: Error in build() method, line 140
    	autotools.make()
    	ConanException: Error 2 while executing make -j3
    

Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.


Conan v2 pipeline ❌

Note: Conan v2 builds may be required once they are on the v2 ready list

The v2 pipeline failed. Please, review the errors and note this will be required for pull requests to be merged in the near future.

See details:

Failure in build 4 (c3ce48dda89ead0b239396e44f28fe9b210e7d87):

  • coin-cbc/2.10.5:
    CI failed to create some packages (All logs)

    Logs for packageID a1f3f75d340c156834d7b91ae484e4ec2c864bd0:
    [settings]
    arch=x86_64
    build_type=Release
    compiler=gcc
    compiler.cppstd=17
    compiler.libcxx=libstdc++11
    compiler.version=11
    os=Linux
    [options]
    */*:shared=False
    
    [...]
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileInput::readRaw(void*, int)':
    CoinFileIO.cpp:(.text._ZN17CoinGzipFileInput7readRawEPvi[_ZN17CoinGzipFileInput7readRawEPvi]+0x5): undefined reference to `gzread'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileInput::readRaw(void*, int)':
    CoinFileIO.cpp:(.text._ZN18CoinBzip2FileInput7readRawEPvi[_ZN18CoinBzip2FileInput7readRawEPvi]+0x1e): undefined reference to `BZ2_bzRead'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileOutput::write(void const*, int)':
    CoinFileIO.cpp:(.text._ZN18CoinGzipFileOutput5writeEPKvi[_ZN18CoinGzipFileOutput5writeEPKvi]+0x5): undefined reference to `gzwrite'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileOutput::write(void const*, int)':
    CoinFileIO.cpp:(.text._ZN19CoinBzip2FileOutput5writeEPKvi[_ZN19CoinBzip2FileOutput5writeEPKvi]+0x23): undefined reference to `BZ2_bzWrite'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileInput::~CoinGzipFileInput()':
    CoinFileIO.cpp:(.text._ZN17CoinGzipFileInputD2Ev[_ZN17CoinGzipFileInputD5Ev]+0x1c): undefined reference to `gzclose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileInput::~CoinGzipFileInput()':
    CoinFileIO.cpp:(.text._ZN17CoinGzipFileInputD0Ev[_ZN17CoinGzipFileInputD5Ev]+0x1c): undefined reference to `gzclose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileInput::~CoinBzip2FileInput()':
    CoinFileIO.cpp:(.text._ZN18CoinBzip2FileInputD2Ev[_ZN18CoinBzip2FileInputD5Ev]+0x2d): undefined reference to `BZ2_bzReadClose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileInput::~CoinBzip2FileInput()':
    CoinFileIO.cpp:(.text._ZN18CoinBzip2FileInputD0Ev[_ZN18CoinBzip2FileInputD5Ev]+0x2d): undefined reference to `BZ2_bzReadClose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileOutput::~CoinGzipFileOutput()':
    CoinFileIO.cpp:(.text._ZN18CoinGzipFileOutputD2Ev[_ZN18CoinGzipFileOutputD5Ev]+0x1c): undefined reference to `gzclose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileOutput::~CoinBzip2FileOutput()':
    CoinFileIO.cpp:(.text._ZN19CoinBzip2FileOutputD2Ev[_ZN19CoinBzip2FileOutputD5Ev]+0x34): undefined reference to `BZ2_bzWriteClose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinGzipFileOutput::~CoinGzipFileOutput()':
    CoinFileIO.cpp:(.text._ZN18CoinGzipFileOutputD0Ev[_ZN18CoinGzipFileOutputD5Ev]+0x1c): undefined reference to `gzclose'
    /opt/conan/binutils/bin/ld: /home/conan/w/prod-v2/BuildSingleReference/p/coin-6d503baf51fc4/p/lib/libCoinUtils.a(CoinFileIO.o): in function `CoinBzip2FileOutput::~CoinBzip2FileOutput()':
    CoinFileIO.cpp:(.text._ZN19CoinBzip2FileOutputD0Ev[_ZN19CoinBzip2FileOutputD5Ev]+0x34): undefined reference to `BZ2_bzWriteClose'
    collect2: error: ld returned 1 exit status
    Makefile:878: recipe for target 'cbc' failed
    make[3]: *** [cbc] Error 1
    make[3]: Leaving directory '/home/conan/w/prod-v2/BuildSingleReference/p/b/coin-74602b87291c8/b/build-release/Cbc/src'
    Makefile:758: recipe for target 'all' failed
    make[2]: *** [all] Error 2
    make[2]: Leaving directory '/home/conan/w/prod-v2/BuildSingleReference/p/b/coin-74602b87291c8/b/build-release/Cbc/src'
    Makefile:607: recipe for target 'all-recursive' failed
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory '/home/conan/w/prod-v2/BuildSingleReference/p/b/coin-74602b87291c8/b/build-release/Cbc'
    Makefile:324: recipe for target 'all-recursive' failed
    make: *** [all-recursive] Error 1
    
    coin-cbc/2.10.5: ERROR: 
    Package 'a1f3f75d340c156834d7b91ae484e4ec2c864bd0' build failed
    coin-cbc/2.10.5: WARN: Build folder /home/conan/w/prod-v2/BuildSingleReference/p/b/coin-74602b87291c8/b/build-release
    *********************************************************
    Recipe 'coin-cbc/2.10.5' cannot build its binary
    It is possible that this recipe is not Conan 2.0 ready
    If the recipe comes from ConanCenter check: https://conan.io/cci-v2.html
    If it is your recipe, check if it is updated to 2.0
    *********************************************************
    
    ERROR: coin-cbc/2.10.5: Error in build() method, line 140
    	autotools.make()
    	ConanException: Error 2 while executing
    
  • coin-cbc/2.10.8:
    Didn't run or was cancelled before finishing


Note: To save resources, CI tries to finish as soon as an error is found. For this reason you might find that not all the references have been launched or not all the configurations for a given reference. Also, take into account that we cannot guarantee the order of execution as it depends on CI workload and workers availability.

@stale
Copy link

stale bot commented Oct 15, 2023

This pull request 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 contributions.

Copy link
Contributor

This pull request has been automatically closed because it has not had recent activity. Thank you for your contributions.

@github-actions github-actions bot closed this Feb 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[package] coin-cbc/2.10.5: Missing conan 2.x integration
4 participants