[GHC] #7579: Command line option to suppress LLVM version warning
#7579: Command line option to suppress LLVM version warning -----------------------------+---------------------------------------------- Reporter: thoughtpolice | Owner: thoughtpolice Type: feature request | Status: new Priority: normal | Component: Compiler (LLVM) Version: 7.7 | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Blockedby: Blocking: | Related: -----------------------------+---------------------------------------------- When developing I'm sometimes testing the LLVM backend and often it's with a development version. In this case I'd like to be able to configure my ```mk/build.mk``` to suppress the annoying version constraint warning, since I know what llc etc it will use. It makes the build output a lot less annoying. Attached is a patch. It's undocumented, since it's probably is only useful to developers. -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7579> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
#7579: Command line option to suppress LLVM version warning -----------------------------+---------------------------------------------- Reporter: thoughtpolice | Owner: thoughtpolice Type: feature request | Status: patch Priority: normal | Component: Compiler (LLVM) Version: 7.7 | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Blockedby: Blocking: | Related: -----------------------------+---------------------------------------------- Changes (by thoughtpolice): * status: new => patch -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7579#comment:1> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
#7579: Command line option to suppress LLVM version warning -----------------------------+---------------------------------------------- Reporter: thoughtpolice | Owner: thoughtpolice Type: feature request | Status: patch Priority: normal | Component: Compiler (LLVM) Version: 7.7 | Keywords: Os: Unknown/Multiple | Architecture: Unknown/Multiple Failure: None/Unknown | Blockedby: Blocking: | Related: -----------------------------+---------------------------------------------- Comment(by mad.one@…): commit 5cca0b443ed2b0328e58fb7881cb393c300f64ed {{{ Author: Austin Seipp <mad.one@gmail.com> Date: Sun Jan 13 22:23:37 2013 -0600 Add -f[no-]warn-unsupported-llvm-version. Closes Trac #7579. This controls whether or not the compiler warns if we're using an LLVM version that's too old or too new. It's mostly useful when building the compiler knowingly with an unsupported version, so you don't get a lot of warnings in the build process. There's no documentation for this since it's a flag only a few developers would care about anyway. Signed-off-by: Austin Seipp <mad.one@gmail.com> compiler/llvmGen/LlvmCodeGen.hs | 5 +++-- compiler/main/DynFlags.hs | 5 ++++- 2 files changed, 7 insertions(+), 3 deletions(-) }}} -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7579#comment:2> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
#7579: Command line option to suppress LLVM version warning ---------------------------------+------------------------------------------ Reporter: thoughtpolice | Owner: thoughtpolice Type: feature request | Status: closed Priority: normal | Component: Compiler (LLVM) Version: 7.7 | Resolution: fixed Keywords: | Os: Unknown/Multiple Architecture: Unknown/Multiple | Failure: None/Unknown Blockedby: | Blocking: Related: | ---------------------------------+------------------------------------------ Changes (by thoughtpolice): * status: patch => closed * resolution: => fixed -- Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7579#comment:3> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
participants (1)
-
GHC