Error building ring - target_feature = "sse" not found
              
              #1547
            
            
          -
| 
         Hi, when I run this: cargo new foo
cd foo
cargo add ring
cross build --release --target i586-unknown-linux-muslI get this error: Any Idea what goes wrong here?  | 
  
Beta Was this translation helpful? Give feedback.
      
      
          Answered by
          
            Emilgardis
          
      
      
        Aug 22, 2024 
      
    
    Replies: 1 comment 2 replies
-
| 
         this is a ring issue, you'd get the same behaviour using only a properly setup environment for cargo. ring is doing some assumption which is not held  | 
  
Beta Was this translation helpful? Give feedback.
                  
                    2 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
so, you'll need to do
RUSTFLAGS="-C target-feature=+sse2", but seems that that target doesn't support sse