Haskell.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

ghc-tickets

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2013 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
ghc-tickets@haskell.org

July 2014

  • 2 participants
  • 839 discussions
[GHC] #9317: Add PolyKinds extension to Data.Monoid
by GHC 20 Jul '14

20 Jul '14
#9317: Add PolyKinds extension to Data.Monoid -------------------------------------+------------------------------------- Reporter: bernalex | Owner: Type: bug | Status: new Priority: low | Milestone: Component: libraries/base | Version: 7.8.2 Keywords: | Differential Revisions: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: | Difficulty: Easy (less Blocking: | than 1 hour) | Blocked By: | Related Tickets: -------------------------------------+------------------------------------- PolyKinds got lost in 1d1ff77aaa09efaddc8cfe0dcf92d6763297cf11. See discussion here: <http://www.haskell.org/pipermail/libraries/2014-July/023261.html>. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/9317> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 6
0 0
Re: [GHC] #7452: [GNU gold] ld: error: cannot find [...]/Types__1.o
by GHC 20 Jul '14

20 Jul '14
#7452: [GNU gold] ld: error: cannot find [...]/Types__1.o -------------------------------------+------------------------------------- Reporter: mrothe | Owner: Type: bug | Status: patch Priority: normal | Milestone: 7.10.1 Component: Build | Version: 7.6.1 System | Keywords: Resolution: | Operating System: Linux Differential Revisions: | Type of failure: Building GHC Architecture: x86_64 | failed (amd64) | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Comment (by Austin Seipp <austin@…>): In [changeset:"021b7978d14799bae779907faf7490cfd21b3f46/ghc"]: {{{ #!CommitTicketReference repository="ghc" revision="021b7978d14799bae779907faf7490cfd21b3f46" driver: use absolute paths in ld scripts (#7452) Patch contributed by slowmo. Signed-off-by: Austin Seipp <austin(a)well-typed.com> }}} -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7452#comment:10> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #6016: On Windows, runhaskell hits an error on UTF-8 files with a BOM
by GHC 20 Jul '14

20 Jul '14
#6016: On Windows, runhaskell hits an error on UTF-8 files with a BOM -------------------------------------+------------------------------------- Reporter: vsajip | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: 7.0.4 (Parser) | Keywords: BOM Resolution: | Operating System: Unknown/Multiple Differential Revisions: | Type of failure: GHC rejects Architecture: | valid program Unknown/Multiple | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: #1744 | -------------------------------------+------------------------------------- Changes (by thomie): * os: Windows => Unknown/Multiple * related: => #1744 Old description: > The file > > {{{ > #!/usr/bin/env runhaskell > main = putStrLn "Hello, world!" > }}} > works on Windows as expected: > > {{{ > C:\Temp>runhaskell hello.hs > Hello, world! > }}} > However, if the file is saved as UTF-8 with a BOM (Windows Notepad, for > example, sometimes adds this BOM to files), an error occurs: > > {{{ > C:\Temp>runhaskell hello2.hs > > hello2.hs:1:1: parse error on input `#!/' > }}} > > I'm using the Haskell Platform 2011.4.0.0. > > I believe that runhaskell/runghc should handle the presence of a BOM > correctly; some Windows programs insert a BOM unbeknownst to the user. > > This behaviour was observed on Windows XP (32-bit) and Windows 7 (32-bit > and 64-bit). New description: The file {{{ #!/usr/bin/env runhaskell main = putStrLn "Hello, world!" }}} works as expected: {{{ C:\Temp>runhaskell hello.hs Hello, world! }}} However, if the file is saved as UTF-8 with a BOM (Windows Notepad, for example, sometimes adds this BOM to files), an error occurs: {{{ C:\Temp>runhaskell hello2.hs hello2.hs:1:1: parse error on input `#!/' }}} I'm using the Haskell Platform 2011.4.0.0. I believe that runhaskell/runghc should handle the presence of a BOM correctly; some Windows programs insert a BOM unbeknownst to the user. This behaviour was observed on Windows XP (32-bit) and Windows 7 (32-bit and 64-bit). -- -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/6016#comment:5> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #5401: LANGUAGE pragma parser nit
by GHC 20 Jul '14

20 Jul '14
#5401: LANGUAGE pragma parser nit -------------------------------------+------------------------------------- Reporter: nwf | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: 7.0.3 (Parser) | Keywords: Resolution: | Operating System: Linux Differential Revisions: | Type of failure: GHC rejects Architecture: x86_64 | valid program (amd64) | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Description changed by thomie: Old description: > A language pragma like > {{{ > {-# LANGUAGE > TypeOperators, > FlexibleContexts #-} > }}} > parses just fine but > {{{ > {-# LANGUAGE > TypeOperators, > FlexibleContexts > #-} > }}} > doesn't, saying: > {{{ > Cannot parse LANGUAGE pragma > Expecting comma-separated list of language options, > each starting with a capital letter > }}} > An OPTIONS pragma, on the other hand, accepts either format without > complaint. New description: Language pragmas like {{{ {-# LANGUAGE TypeOperators, FlexibleContexts #-} }}} or {{{ {-# LANGUAGE TypeOperators, FlexibleContexts #-} }}} parse just fine but {{{ {-# LANGUAGE TypeOperators, FlexibleContexts #-} }}} doesn't (note the missing spaces before the closing `#-}`), saying: {{{ Cannot parse LANGUAGE pragma Expecting comma-separated list of language options, each starting with a capital letter }}} An OPTIONS_GHC pragma, on the other hand, accepts either format without complaint. -- -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/5401#comment:7> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7452: [GNU gold] ld: error: cannot find [...]/Types__1.o
by GHC 20 Jul '14

20 Jul '14
#7452: [GNU gold] ld: error: cannot find [...]/Types__1.o -------------------------------------+------------------------------------- Reporter: mrothe | Owner: Type: bug | Status: patch Priority: normal | Milestone: 7.10.1 Component: Build | Version: 7.6.1 System | Keywords: Resolution: | Operating System: Linux Differential Revisions: | Type of failure: Building GHC Architecture: x86_64 | failed (amd64) | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Changes (by thoughtpolice): * status: infoneeded => patch -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7452#comment:9> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7452: [GNU gold] ld: error: cannot find [...]/Types__1.o
by GHC 20 Jul '14

20 Jul '14
#7452: [GNU gold] ld: error: cannot find [...]/Types__1.o -------------------------------------+------------------------------------- Reporter: mrothe | Owner: Type: bug | Status: infoneeded Priority: normal | Milestone: 7.10.1 Component: Build | Version: 7.6.1 System | Keywords: Resolution: | Operating System: Linux Differential Revisions: | Type of failure: Building GHC Architecture: x86_64 | failed (amd64) | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Comment (by slomo): The attached patch against 7.8.3 works around this by always putting absolute paths to the .o files into the linker script. Works with gold but should also just work fine with bfd (but I didn't test that). -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7452#comment:8> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #1012: ghc panic with mutually recursive modules and template haskell
by GHC 20 Jul '14

20 Jul '14
#1012: ghc panic with mutually recursive modules and template haskell -------------------------------------+------------------------------------- Reporter: guest | Owner: Type: bug | Status: new Priority: lowest | Milestone: 7.10.1 Component: Template | Version: 6.8.2 Haskell | Keywords: Resolution: | Operating System: Unknown/Multiple Differential Revisions: | Type of failure: None/Unknown Architecture: | Test Case: TH_import_loop Unknown/Multiple | Blocking: Difficulty: Unknown | Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Changes (by mboes): * cc: m@… (added) Comment: FWIW, I just ran into this very same issue. My use case is identical in structure to goldfire's, but is unrelated to the singletons library. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/1012#comment:33> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #5567: LLVM: Improve alias analysis / performance
by GHC 19 Jul '14

19 Jul '14
#5567: LLVM: Improve alias analysis / performance -------------------------------------+------------------------------------- Reporter: dterei | Owner: dterei Type: task | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: (LLVM) | Keywords: Resolution: | Operating System: Unknown/Multiple Differential Revisions: | Type of failure: Runtime Architecture: | performance bug Unknown/Multiple | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Changes (by brbr): * cc: brooks.brian@… (added) * difficulty: => Unknown -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/5567#comment:14> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7883: enable GHC LLVM backend to use LLVM provided CAS / Atomicity primitives?
by GHC 19 Jul '14

19 Jul '14
#7883: enable GHC LLVM backend to use LLVM provided CAS / Atomicity primitives? -------------------------------------+------------------------------------- Reporter: carter | Owner: carter Type: task | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: 7.9 Resolution: | Keywords: Differential Revisions: | Operating System: Unknown/Multiple Architecture: | Type of failure: None/Unknown Unknown/Multiple | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- Changes (by brbr): * cc: brooks.brian@… (added) -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7883#comment:20> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #4213: LLVM: Add support for TNTC to LLVM compiler suite
by GHC 19 Jul '14

19 Jul '14
#4213: LLVM: Add support for TNTC to LLVM compiler suite -------------------------------------+------------------------------------- Reporter: dterei | Owner: dterei Type: feature | Status: new request | Milestone: 7.10.1 Priority: low | Version: 6.13 Component: Compiler | Keywords: (LLVM) | Operating System: Unknown/Multiple Resolution: | Type of failure: None/Unknown Differential Revisions: | Test Case: Architecture: | Blocking: Unknown/Multiple | Difficulty: Unknown | Blocked By: 9142 | Related Tickets: | -------------------------------------+------------------------------------- Comment (by bgamari): This is quite pertinent: ​http://lists.cs.uiuc.edu/pipermail/llvmdev/2014-June/073667.html -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/4213#comment:36> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • ...
  • 84
  • Older →

HyperKitty Powered by HyperKitty version 1.3.9.