-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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-buildtools: new recipe #23530
base: master
Are you sure you want to change the base?
coin-buildtools: new recipe #23530
Conversation
This comment has been minimized.
This comment has been minimized.
f0d6a39
to
bca8fc2
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Conan v1 pipeline ✔️All green in build 5 (
Conan v2 pipeline ✔️
All green in build 5 (
|
Hi @uilianries @AbrilRBS @jcar87, @franramirez688 , I'm interested by this PR and all coin retaled ones. |
import os | ||
|
||
from conan import ConanFile | ||
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, mkdir, download |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, mkdir, download | |
from conan.tools.files import apply_conandata_patches, copy, export_conandata_patches, get, rename, download |
To remove an unused import.
Packages Autotools M4 files required for running
autoreconf
on the COIN-OR libraries on CCI. https://github.com/coin-or-tools/BuildToolsThe COIN-OR libraries have been struggling with cross-building support on macOS and shared builds on MSVC due to the included configure scripts being generated with a fairly old Autoconf version. This will hopefully resolve these issues.
It also adds newer versions of the Autotools toolchain packages as transitive build-time requirements (but as
self.requires()
due to Conan v1 limitations) to ensure that up-to-date versions are being used.