You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you checked that there aren't other open pull requests for the same formula update/change?
Have you built your formula locally with brew install --build-from-source <formula>, where <formula> is the name of the formula you're submitting?
Is your test running fine brew test <formula>, where <formula> is the name of the formula you're submitting?
Does your build pass brew audit --strict <formula> (after doing brew install --build-from-source <formula>)? If this is a new formula, does it pass brew audit --new <formula>?
In file included from /tmp/watchman-20220607-31055-19g08zv/watchman-2022.06.06.00/watchman/watcher/eden.cpp:8:
/home/linuxbrew/.linuxbrew/include/cpptoml.h: In static member function 'static cpptoml::value_traits<T, typename std::enable_if<(((! cpptoml::valid_value_or_string_convertible<T>::value) && (! std::is_floating_point<typename std::decay<_Tp>::type>::value)) && std::is_signed<typename std::decay<_Tp>::type>::value)>::type>::value_type cpptoml::value_traits<T, typename std::enable_if<(((! cpptoml::valid_value_or_string_convertible<T>::value) && (! std::is_floating_point<typename std::decay<_Tp>::type>::value)) && std::is_signed<typename std::decay<_Tp>::type>::value)>::type>::construct(T&&)':
/home/linuxbrew/.linuxbrew/include/cpptoml.h:344:25: error: 'numeric_limits' is not a member of 'std'
344 | if (val < (std::numeric_limits<int64_t>::min)())
| ^~~~~~~~~~~~~~
/home/linuxbrew/.linuxbrew/include/cpptoml.h:344:47: error: expected primary-expression before '>' token
344 | if (val < (std::numeric_limits<int64_t>::min)())
| ^
/home/linuxbrew/.linuxbrew/include/cpptoml.h:344:50: error: '::min' has not been declared; did you mean 'std::min'?
344 | if (val < (std::numeric_limits<int64_t>::min)())
| ^~~
| std::min
In file included from /home/linuxbrew/.linuxbrew/Cellar/gcc/11.3.0_1/include/c++/11/algorithm:62,
from /home/linuxbrew/.linuxbrew/include/cpptoml.h:10,
from /tmp/watchman-20220607-31055-19g08zv/watchman-2022.06.06.00/watchman/watcher/eden.cpp:8:
/home/linuxbrew/.linuxbrew/Cellar/gcc/11.3.0_1/include/c++/11/bits/stl_algo.h:3455:5: note: 'std::min' declared here
3455 | min(initializer_list<_Tp> __l, _Compare __comp)
| ^~~
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
brew install --build-from-source <formula>, where<formula>is the name of the formula you're submitting?brew test <formula>, where<formula>is the name of the formula you're submitting?brew audit --strict <formula>(after doingbrew install --build-from-source <formula>)? If this is a new formula, does it passbrew audit --new <formula>?I think GCC 11 issue is the one mentioned in https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104008 as referenced by commit facebook/folly@5e6bef2
It seems to be fixed in GCC 11.3 so trying newer
gccformula to reduce multiple GCC versions in dependency tree (sincefolly/fizz/... usegcc).