tensorflow / custom-op

Guide for building custom op for TensorFlow
Apache License 2.0
378 stars 116 forks source link

Fix stack overflow of bash when copying tf headers #92

Open mareikethies opened 3 years ago

mareikethies commented 3 years ago

Fixes issue described in #87. Putting together the copy command for tf headers in tf_configure.bzl using " && " causes a stack overflow in msys2 bash.exe on windows. Executing each copy as a single command (via "\n") prevents this.

akmaier commented 3 years ago

This would also totally help my project! There might be other issues down the line and we would be glad to track and fix them!