Conversation
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
|
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed, please reply here (e.g.
|
|
I signed it! |
|
CLAs look good, thanks! |
|
Any interest in merging this in? |
|
Obsoleted by #585. |
This resolves a bit of an obscure issue for me. Here's what's happening:
I'm trying to compile a project from source that uses glog. This project needs to be compiled for ARM (aarch64) and the way I'm running this is inside of a container (Docker) on an x86 machine but that has binfmt_misc setup on the kernel to handle ARM binaries through
qemu-arm-static. The container starts with ascratchimage and just applies Ubuntu's core ARM64 image on top. In the end everything inside is emulated through qemu to mimic an isolated ARM environment.When the project goes to build its version of glog it runs into:
Updating
config.guessandconfig.subfrom the latest versions here http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and here http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD resolved the issue.