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
Setting it to unsigned ext_index = 0; in chrome/patches/boringssl.patch:94 worked and build completed successfully but not sure if it is a valid initial value.
yes it is. -Werror-maybe-initialized is only sometimes a problem. In this case the declared memory for ext_index is only used as a placeholder for tls_extension_find to fill, but the compiler could not figure out if tls_extension_find actually reads the value of ext_index.
Giving it a dummy value just to please the compiler is the correct way to fix this.
Followed Native build instructions for Ubuntu (I am running Linux Mint 21.3 Virginia). When I run
make chrome-build
I get the following:Googling the error messages has produced nothing for me.
The text was updated successfully, but these errors were encountered: