bneradt commented on code in PR #9606:
URL: https://github.com/apache/trafficserver/pull/9606#discussion_r1178578099
##########
tools/build_h3_tools.sh:
##########
@@ -68,13 +72,59 @@ else
num_threads=$(sysctl -n hw.logicalcpu)
fi
+# boringssl
+echo "Building boringssl..."
+
+# We need this go version.
+if [ ! -d ${BASE}/go ]; then
+ sudo mkdir ${BASE}/go
+fi
+
+if [ `uname -m` = "arm64" ]; then
Review Comment:
In a Linux container in an m1, `uname -m` produces aarch64. Let's update
this to:
```sh
if [ `uname -m` = "arm64" -o `uname -m` = "aarch64" ]; then
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]