You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/07/09 21:18:37 UTC

[GitHub] [arrow-rs] alamb commented on issue #458: Arrow 4.3.0 does not compile for feature gates `["simd", "avx512"], ["simd"]`

alamb commented on issue #458:
URL: https://github.com/apache/arrow-rs/issues/458#issuecomment-877461483


   It is interesting -- I can reproduce these errors and it fails for me on 4.4.0 as well as 4.0.0. 
   
   With any of the following in my Cargo.toml
   ```
   [dependencies]
   arrow = { version = "=4.4.0", features = ["simd", "avx512"] }
   
   [dependencies]
   arrow = { version = "=4.0.0", features = ["simd"] }
   
   [dependencies]
   arrow = { version = "=3.0.0", features = ["simd"] }
   ```
   
   when I try to compile with the command
   
   ```
   cargo +nightly-2021-07-04 run	
   ```
   I get the reported errors
   
   
   From source, however,  this works fine on master and on 4.4.0 tag
   ```
    cargo +nightly-2021-07-04 build --features=simd,avx512
   ```
   
   
   
   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org