Michael Cho
Michael Cho
Looks like Python bug: https://bugs.python.org/issue42504 So, I don't think this is an `asdf-python` or `python-build` issue. It was fixed in both latest Python and at least backported to 3.9. Fix...
@curtisault The error looks similar to https://bugs.python.org/issue43470, which was closed (i.e. won't fix) From response, > While the particular error you ran into is easily worked around, the resulting Python...
> I believe this issue may not be limited to prior versions of python, I'm also running into similar `python-build` errors while trying to install the latest v3.9.4 (also MacOS...
@ev-dev > * Python build tools (ie. https://github.com/pyenv/pyenv/wiki#suggested-build-environment) You probably should be fine with those. The exact packages can vary based on what libraries you want to have available (which...
Just a comment that error seems to just be about SSL certificate issues. Looking at the package you mentioned, the error is happening at: https://github.com/Floobits/floobits-emacs/blob/master/floo/common/api.py#L125-L128 ```python cafile = os.path.join(G.BASE_DIR, 'floobits.pem')...
I also hit this issue building `folly` in Homebrew (https://github.com/Homebrew/homebrew-core/pull/106363) as our Linux runner builds `folly` with `-march=core2` (i.e. no SSE4.2). At least for Homebrew failure with `v2022.07.18.00` tag, the...
`v2022.07.25.00` fails to build for me in Homebrew environment on macOS (with `-march=nehalem` so SSE4.2 supported, AVX not): ``` Undefined symbols for architecture x86_64: "folly::detail::base64_detail::base64Decode_SSE4_2(char const*, char const*, char*)", referenced...
I think the location of asdf's config file is managed by the [core asdf](https://github.com/asdf-vm/asdf) repo. The rc file should have already been processed/parsed before making use of this ruby plugin....
> Can you share a link? https://github.com/LuaJIT/LuaJIT/issues/649#issuecomment-751341864 Also, website (https://luajit.org/install.html) was updated with linker flags removed and to specifically use 2.1 on macOS Old version of website (https://web.archive.org/web/20220407012421/https://luajit.org/install.html) mentions difference...
> The error specifically mentions ICU, so I imagine the issue is because something in icu4c is adding `-I$HOMEBREW_PREFIX/include`. I'm not sure why given icu4c is keg-only so we should...