areusch commented on issue #8177:
URL: https://github.com/apache/tvm/issues/8177#issuecomment-871518949


   well, at that commit i get:
   ```
   Step 17/17 : RUN bash /install/ubuntu_download_arm_compute_lib_binaries.sh
    ---> Running in 66c2dfde768f
   /install/ubuntu_download_arm_compute_lib_binaries.sh: line 20: 
architecture_type: command not found
   ```
   
   but with this patch 
   ```
   diff --git a/docker/install/ubuntu_download_arm_compute_lib_binaries.sh 
b/docker/install/ubuntu_download_arm_compute_lib_binaries.sh
   index 01926df9f..c68654c75 100755
   --- a/docker/install/ubuntu_download_arm_compute_lib_binaries.sh
   +++ b/docker/install/ubuntu_download_arm_compute_lib_binaries.sh
   @@ -17,7 +17,7 @@
    # under the License.
   
    set -e
   -architecture_type = $(uname -i)
   +architecture_type=$(uname -i)
    # Install cross-compiler when not building natively.
    # Depending on the architecture selected to compile for,
    # you may need to install an alternative cross-compiler.
   ```
   
   i'm able to get it to build. pushed as `areusch1/ci-arm-staging:v0.04`, if 
you want to use that. sent #8377 to resolve on `main`.


-- 
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]


Reply via email to