Building TFLite wheel package on Mac Silicon

I was just wondering if anyone has had success building a Tensor Flow Lite wheel package on Mac Silicon. Specifically using this script:

tensorflow/lite/tools/pip_package/build_pip_package_with_cmake.sh

Found here: Zbuduj pakiet kołowy Pythona TensorFlow Lite

I am running into some potential issues. Just want to see if it’s just an issue I am having.

Thanks.

-Jeff-

@Jeff_Schuler,

Welcome to the Tensorflow Forum!

Could you please share complete error log to investigate the issues reported here?

Thank you!

The output of the build is too large to post here. Is there an alternate way to get the build log to you?

Thanks.

-Jeff-

I have started to look into the build scripts and I think one roadblock I am encountering is the need to have clang_format version 9 installed on my Mac. This is a dependency from Eigen3 which is referenced here: find_package(Eigen3 REQUIRED)
Inside of that script is: find_package(CLANG_FORMAT 9 EXACT)

I tried to install clang_format 9 on my machine by following this Gist: clang-format@9.rb · GitHub

But version 9 is no longer available in Home Brew.

Thanks.

-Jeff-