Home > other >  Haskell GHC 9.4.4 compile error when -fllvm and -O2?
Haskell GHC 9.4.4 compile error when -fllvm and -O2?

Time:01-31

    $ ~/.ghcup/ghc/9.4.4/bin/ghc --make -fllvm -O2 test.hs
    Loaded package environment from /home/dunham/.ghc/x86_64-linux-9.4.4/environments/default
    [1 of 2] Compiling Main             ( test.hs, test.o )
    Cannot specify -O# and --passes=/--foo-pass, use -passes='default<O#>,other-pass'

<no location info>: error:
    `opt' failed in phase `LLVM Optimiser'. (Exit code: 1)

However

$ ~/.ghcup/ghc/9.4.4/bin/ghc --make -fllvm  test.hs
Loaded package environment from /home/dunham/.ghc/x86_64-linux-9.4.4/environments/default
[1 of 2] Compiling Main             ( test.hs, test.o )
[2 of 2] Linking test

and

/.ghcup/ghc/9.4.4/bin/ghc --make -O2 test.hs
Loaded package environment from /home/dunham/.ghc/x86_64-linux-9.4.4/environments/default
[1 of 2] Compiling Main             ( test.hs, test.o )
[2 of 2] Linking test

test.hs

import Data.Array.Base
import System.Environment
import Numeric

main = do 
        [arg] <- getArgs
        let n = (read arg) - 1 
        let init = listArray (0,n) (repeat 1.0)
        let (v:u:rest) = drop 19 $ iterate (eval_AtA_times_u n) init
        let vBv = sum [(u!i)*(v!i) |i<-[0..n]]
        let vv  = sum [(v!i)*(v!i) |i<-[0..n]]
        putStrLn $ showFFloat (Just 9) (sqrt (vBv/vv)) ""

eval_AtA_times_u n u = eval_At_times_u n v
    where v = eval_A_times_u n u

eval_A x y = 1.0/((i j)*(i j 1)/2 i 1)
    where i = fromIntegral x
          j = fromIntegral y

eval_A_times_u :: Int -> UArray Int Double -> UArray Int Double
eval_A_times_u n u = unsafeAccumArray ( ) 0 (0,n) 
                     [(i,(eval_A i j) * u!j)|i<-[0..n], j<-[0..n]]
   
eval_At_times_u :: Int -> UArray Int Double -> UArray Int Double
eval_At_times_u n u = unsafeAccumArray ( ) 0 (0,n) 
                      [(i,(eval_A j i) * u!j)|i<-[0..n], j<-[0..n]]

CodePudding user response:

Need to install LLVM 10, 11, 12, or 13 not 14 or 15.

  • Related