Skip to content
Snippets Groups Projects
Commit 4c7ae2a1 authored by Andreas Klebinger's avatar Andreas Klebinger Committed by Marge Bot
Browse files

Testsuite: Check if llvm assembler is available for have_llvm

parent c561de8f
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,8 @@ inTreeCompilerArgs stg = do
wordsize <- show @Int . (*8) <$> queryTargetTarget (wordSize2Bytes . tgtWordSize)
llc_cmd <- settingsFileSetting ToolchainSetting_LlcCommand
have_llvm <- liftIO (isJust <$> findExecutable llc_cmd)
llvm_as_cmd <- settingsFileSetting ToolchainSetting_LlvmAsCommand
have_llvm <- liftIO (all isJust <$> mapM findExecutable [llc_cmd, llvm_as_cmd])
top <- topDirectory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment