-
Notifications
You must be signed in to change notification settings - Fork 560
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
add cif_api #3375
add cif_api #3375
Conversation
Ugh, looks like |
Any ideas on why the |
My hunch is that it doesn't like GCC 4: when we don't specify the preferred GCC version, cxx03 uses GCC 4, cxx11 GCC 5. But I didn't try to build locally to see what's going on. To verify my hypothesis you can add |
EDIT: was just missing a dollar sign lol |
Digging into the
It sounds like |
Can you try building with GCC 7? The weird thing is that Yggdrasil/H/HarfBuzz/common.jl Line 83 in d923580
|
Bumping gcc did fix it for The remaining |
"Good" news: rebuilding HarfBuzz_ICU for i686-linux-gnu with GCC 5 doesn't work anymore. Why knows how it worked before 😕 Well, I'm going to merge this now Edit: ugh, no, I was checking out an old version of BinaryBuilderBase. So now I'm back to "how HarfBuzz_ICU works?!?!" |
* initial commit cif_api * add c++ CFLAGS, add configure option to not build docs * switch to LibraryProduct instead of ExecutableProduct * add CPPFLAGS to help musl builds find sqlite3.h * apply review changes * move CPPFLAGS back to configure statement, add minimum of gcc v5 * switch CPPFLAGS back to export environment variable but with missing $ sign for exansion * bump gcc version to 7 to make i686 work * add patch for mingw install issues
This PR adds a
build_tarball.jl
for cif_api.This is what comes out of the wizard for me on a
x86_64-mingw-*
platform,*-linux-*
still needs some tinkering but I wanted to see how the other platforms do as well.Closes #2680