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 -----
  • July
  • June
  • 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

September 2014

  • 1 participants
  • 1019 discussions
[GHC] #8529: Sequent reading from socket/connection on Windows fails
by GHC 24 Sep '14

24 Sep '14
#8529: Sequent reading from socket/connection on Windows fails -------------------------------------+------------------------------------- Reporter: Heimdell | Owner: Type: bug | Status: new Priority: normal | Milestone: Component: | Version: 7.4.2 libraries/haskell2010 | Operating System: Windows Keywords: sockets, windows, | Type of failure: Incorrect result read failure | at runtime Architecture: Unknown/Multiple | Test Case: Difficulty: Unknown | Blocking: Blocked By: | Related Tickets: | -------------------------------------+------------------------------------- I wrote a simple TCP-client, which consumes and produces 8-byte packets. When I run it on linux, it works perfectly, being part of the loop (write- read-write-read-...). On windows it receives only first msg from the other side (write-read- write-write-...). The packets are still going, although. Before that, I used the sockets directly; changing to HandleStream didn't help. The code is: {{{ transmit :: Int -> HandleStream ByteString -> ByteString -> IO [Bytestring] transmit delay sock packet = do let input = timeout delay $ sock `readBlock` 8 <* putStrLn "\nData was read!" sock `writeBlock` pack strings <- whileJust input return [str | Right str <- strings] whileJust action = do result <- action case result of Just a -> (:) <$> return a <*> whileJust action Nothing -> return [] }}} -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/8529> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 1
0 0
[GHC] #9338: Some ghc options do not seem to be documented:
by GHC 24 Sep '14

24 Sep '14
#9338: Some ghc options do not seem to be documented: -------------------------------------+------------------------------------- Reporter: jrp | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Documentation | Version: 7.8.3 Keywords: | Differential Revisions: Operating System: Unknown/Multiple | Architecture: Type of failure: Documentation | Unknown/Multiple bug | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------- ghc --show-options comes up with options that I could not find in the manual. For example -parallel, -smp, -mavx. Would it be possible to * come up with an alphabetical list in the manual? * have an option that picked the best combination of options for the cpu on which you are running? -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/9338> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 1
0 0
Re: [GHC] #5794: Nofib nightly regressions with pretty graphs
by GHC 24 Sep '14

24 Sep '14
#5794: Nofib nightly regressions with pretty graphs -------------------------------------+------------------------------------- Reporter: dterei | Owner: dterei Type: task | Status: closed Priority: normal | Milestone: ⊥ Component: NoFib | Version: benchmark suite | Keywords: Resolution: fixed | Architecture: Unknown/Multiple Operating System: | Difficulty: Unknown Unknown/Multiple | Blocked By: Type of failure: | Related Tickets: None/Unknown | Test Case: | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Changes (by thomie): * status: new => closed * resolution: => fixed * blockedby: 5793 => Comment: See http://ghcspeed-nomeata.rhcloud.com/, linked to from the [wiki:Infrastructure] page. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/5794#comment:3> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #888: Implement the static argument transformation
by GHC 24 Sep '14

24 Sep '14
#888: Implement the static argument transformation -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: task | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: 6.4.2 Resolution: | Keywords: Operating System: | Architecture: Unknown/Multiple Unknown/Multiple | Difficulty: Unknown Type of failure: | Blocked By: None/Unknown | Related Tickets: Test Case: N/A | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Comment (by choenerzs): I think this issue tracks work on SAT for stream fusion / concatMap. Probably the more generic case as well, but I think I added myself to CC because of stream fusions concatMap. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/888#comment:25> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3384: Add HsSyn prettyprinter tests
by GHC 24 Sep '14

24 Sep '14
#3384: Add HsSyn prettyprinter tests -------------------------------------+------------------------------------- Reporter: igloo | Owner: kseo Type: task | Status: new Priority: normal | Milestone: ⊥ Component: Test Suite | Version: Resolution: | Keywords: Operating System: | Architecture: Unknown/Multiple Unknown/Multiple | Difficulty: Unknown Type of failure: | Blocked By: None/Unknown | Related Tickets: Test Case: | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Changes (by thomie): * version: 6.10.4 => Comment: kseo: did you manage to get something going? Please ask questions on irc if you have any, maybe somebody can help you out. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3384#comment:3> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
[GHC] #9535: Remove max_bytes_used from haddock tests
by GHC 24 Sep '14

24 Sep '14
#9535: Remove max_bytes_used from haddock tests -------------------------------------+------------------------------------- Reporter: nomeata | Owner: Type: task | Status: new Priority: normal | Milestone: Component: Test Suite | Version: 7.8.2 Keywords: | Operating System: Architecture: Unknown/Multiple | Unknown/Multiple Difficulty: Unknown | Type of failure: Blocked By: | None/Unknown Related Tickets: | Test Case: | Blocking: | Differential Revisions: -------------------------------------+------------------------------------- Simon M says: “I think we should probably remove the max_bytes_used limits for the Haddock tests.” (I plan to “fix” this in the HIW contributors talk, so please do _not_ fix it just now :-)) -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/9535> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 2
0 0
Re: [GHC] #888: Implement the static argument transformation
by GHC 24 Sep '14

24 Sep '14
#888: Implement the static argument transformation -------------------------------------+------------------------------------- Reporter: simonpj | Owner: Type: task | Status: new Priority: normal | Milestone: 7.10.1 Component: Compiler | Version: 6.4.2 Resolution: | Keywords: Operating System: | Architecture: Unknown/Multiple Unknown/Multiple | Difficulty: Unknown Type of failure: | Blocked By: None/Unknown | Related Tickets: Test Case: N/A | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Comment (by nomeata): I’m confused. There is `-fstatic-argument-transformation`. Shouldn’t this be closed? There is also #9374 about the need to make SAT better... -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/888#comment:24> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3646: Enforce requirement that our repos contains a subset of upstream's patches
by GHC 24 Sep '14

24 Sep '14
#3646: Enforce requirement that our repos contains a subset of upstream's patches -------------------------------------+------------------------------------- Reporter: igloo | Owner: Type: task | Status: closed Priority: lowest | Milestone: Component: Trac & Git | Version: Resolution: duplicate | Keywords: Operating System: | Architecture: Unknown/Multiple Unknown/Multiple | Difficulty: Unknown Type of failure: | Blocked By: None/Unknown | Related Tickets: #8251 Test Case: | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Changes (by thomie): * status: new => closed * component: Compiler => Trac & Git * related: => #8251 * failure: => None/Unknown * version: 6.10.4 => * milestone: 7.10.1 => * resolution: => duplicate -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3646#comment:10> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3355: Refactor Template Haskell syntax conversions
by GHC 24 Sep '14

24 Sep '14
#3355: Refactor Template Haskell syntax conversions -------------------------------------+------------------------------------- Reporter: simonmar | Owner: Type: task | Status: new Priority: lowest | Milestone: 7.10.1 Component: Template | Version: 6.10.3 Haskell | Keywords: Resolution: | Architecture: Unknown/Multiple Operating System: | Difficulty: Moderate (less Unknown/Multiple | than a day) Type of failure: | Blocked By: None/Unknown | Related Tickets: Test Case: | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Changes (by thomie): * failure: => None/Unknown * component: Compiler => Template Haskell Old description: > On [wiki:Commentary/Compiler/TemplateHaskell] there is a proposed > refactoring of the Tempate Haskell-related syntax conversions. This task > is to do that refactoring. New description: On [wiki:TemplateHaskell/Conversions] there is a proposed refactoring of the Tempate Haskell-related syntax conversions. This task is to do that refactoring. Edit: link. -- -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3355#comment:11> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #5462: Deriving clause for arbitrary classes
by GHC 24 Sep '14

24 Sep '14
#5462: Deriving clause for arbitrary classes -------------------------------------+------------------------------------- Reporter: simonpj | Owner: dreixel Type: feature | Status: new request | Milestone: ⊥ Priority: normal | Version: 7.2.1 Component: Compiler | Keywords: Generics Resolution: | Architecture: Unknown/Multiple Operating System: | Difficulty: Unknown Unknown/Multiple | Blocked By: Type of failure: | Related Tickets: #7346 None/Unknown | Test Case: | Blocking: | Differential Revisions: | -------------------------------------+------------------------------------- Comment (by rwbarton): Can't we determine the context for the derived instance from the contexts of the default method type signatures? -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/5462#comment:29> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • ...
  • 102
  • Older →

HyperKitty Powered by HyperKitty version 1.3.9.