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

September 2013

  • 3 participants
  • 648 discussions
[GHC] #8289: unused variable in rts/posix/OSMem.c getPageSize
by GHC 14 Sep '13

14 Sep '13
#8289: unused variable in rts/posix/OSMem.c getPageSize ------------------------------------+------------------------------------- Reporter: rwbarton | Owner: Type: bug | Status: new Priority: low | Milestone: Component: Compiler | Version: 7.7 Keywords: | Operating System: Unknown/Multiple Architecture: Unknown/Multiple | Type of failure: None/Unknown Difficulty: Unknown | Test Case: Blocked By: | Blocking: Related Tickets: | ------------------------------------+------------------------------------- bgamari pointed this out on IRC. The static variable `pageSize` is never set, so every `getPageSize` call does a system call. There should be a line `pageSize = ret;` before `return ret;`. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/8289> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 3
0 0
Re: [GHC] #6024: Allow defining kinds alone, without a datatype
by GHC 14 Sep '13

14 Sep '13
#6024: Allow defining kinds alone, without a datatype --------------------------------------------+------------------------------ Reporter: dreixel | Owner: Type: feature request | Status: new Priority: normal | Milestone: 7.8.1 Component: Compiler (Type checker) | Version: 7.5 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Type of failure: None/Unknown | Unknown/Multiple Test Case: | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: --------------------------------------------+------------------------------ Changes (by bgamari): * cc: bgamari@… (added) -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/6024#comment:5> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #910: --make should have a -j flag for parallel building
by GHC 14 Sep '13

14 Sep '13
#910: --make should have a -j flag for parallel building -------------------------------------+------------------------------------ Reporter: igloo | Owner: Type: feature request | Status: patch Priority: normal | Milestone: _|_ Component: Compiler | Version: 6.4.2 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: N/A | Blocked By: 8184, 8235 Blocking: | Related Tickets: -------------------------------------+------------------------------------ Comment (by parcs): refold: Are you planning to work on `--make -j` support in Cabal? I'd gladly work on it if you aren't. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/910#comment:56> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7633: Checkable "minimal complete definitions"
by GHC 14 Sep '13

14 Sep '13
#7633: Checkable "minimal complete definitions" -------------------------------------+------------------------------------ Reporter: shachaf | Owner: Type: feature request | Status: patch Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 7.6.1 Resolution: | Keywords: Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: #6028 -------------------------------------+------------------------------------ Comment (by nomeata): I just read through the patch, and it seems to be useful and well-done. Minor point: The call to {{{warnMissingMethodOrAT}}} can be removed instead of just commenting it out. There is a new call to `mkClass` in http://git.haskell.org/ghc.git/blob/17a868afa169c52d8525a95cbed87b2fc12044c…, so the patch needs to be updated again slightly. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7633#comment:27> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #7977: Optimization: Shift dropped list heads by coeffecient to prevent thunk generation
by GHC 14 Sep '13

14 Sep '13
#7977: Optimization: Shift dropped list heads by coeffecient to prevent thunk generation ----------------------------------+---------------------------------------- Reporter: schyler | Owner: Type: feature | Status: new request | Milestone: _|_ Priority: low | Version: 7.4.2 Component: Compiler | Keywords: Resolution: | Architecture: Unknown/Multiple Operating System: | Difficulty: Difficult (2-5 days) Unknown/Multiple | Blocked By: Type of failure: None/Unknown | Related Tickets: Test Case: | Blocking: | ----------------------------------+---------------------------------------- Changes (by schyler): * priority: normal => low * difficulty: Unknown => Difficult (2-5 days) * milestone: => _|_ -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/7977#comment:3> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions
by GHC 14 Sep '13

14 Sep '13
#3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions -------------------------------------+------------------------------------- Reporter: eflister | Owner: Type: feature request | Status: closed Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 6.10.4 (Parser) | Keywords: language pragma Resolution: fixed | extensions error message warning Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: many :-) | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------- Changes (by nomeata): * status: patch => closed * testcase: => many :-) * resolution: => fixed -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3647#comment:24> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions
by GHC 14 Sep '13

14 Sep '13
#3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions -------------------------------------+------------------------------------- Reporter: eflister | Owner: Type: feature request | Status: patch Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 6.10.4 (Parser) | Keywords: language pragma Resolution: | extensions error message warning Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------- Comment (by Joachim Breitner <mail@…>): In [changeset:bb0e5b59b11037529b5a1c623fe077988c853056/testsuite]: {{{ #!CommitTicketReference repository="testsuite" revision="bb0e5b59b11037529b5a1c623fe077988c853056" Adjust test suite to new Language Pragma warnigns (this is related to #3647) }}} -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3647#comment:23> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions
by GHC 14 Sep '13

14 Sep '13
#3647: unify handling and error messages for -X vs. {-#LANGUAGE ...#-} pragmas/extensions -------------------------------------+------------------------------------- Reporter: eflister | Owner: Type: feature request | Status: patch Priority: normal | Milestone: 7.8.1 Component: Compiler | Version: 6.10.4 (Parser) | Keywords: language pragma Resolution: | extensions error message warning Operating System: Unknown/Multiple | Architecture: Unknown/Multiple Type of failure: None/Unknown | Difficulty: Unknown Test Case: | Blocked By: Blocking: | Related Tickets: -------------------------------------+------------------------------------- Comment (by Joachim Breitner <mail@…>): In [changeset:9278994a3606783f60101057646a1fab4e4d217d/ghc]: {{{ #!CommitTicketReference repository="ghc" revision="9278994a3606783f60101057646a1fab4e4d217d" Give language pragma suggestions without -X for easier copy'n'paste. This fixes: #3647 }}} -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/3647#comment:22> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #6079: SEH exception handler not implemented on Win64
by GHC 14 Sep '13

14 Sep '13
#6079: SEH exception handler not implemented on Win64 -----------------------------------------+--------------------------------- Reporter: igloo | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.6.2 Component: Runtime System | Version: 7.5 Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: None/Unknown | (amd64) Test Case: derefnull, divbyzero | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Comment (by ezyang): Remark: GHC does not have to be built for 64-bit for this to occur; all you need to be doing is running a 64-bit version of Windows itself. -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/6079#comment:6> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
Re: [GHC] #6079: SEH exception handler not implemented on Win64
by GHC 14 Sep '13

14 Sep '13
#6079: SEH exception handler not implemented on Win64 -----------------------------------------+--------------------------------- Reporter: igloo | Owner: Type: bug | Status: new Priority: normal | Milestone: 7.6.2 Component: Runtime System | Version: 7.5 Resolution: | Keywords: Operating System: Windows | Architecture: x86_64 Type of failure: None/Unknown | (amd64) Test Case: derefnull, divbyzero | Difficulty: Unknown Blocking: | Blocked By: | Related Tickets: -----------------------------------------+--------------------------------- Changes (by ezyang): * architecture: Unknown/Multiple => x86_64 (amd64) -- Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/6079#comment:5> GHC <http://www.haskell.org/ghc/> The Glasgow Haskell Compiler
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • ...
  • 65
  • Older →

HyperKitty Powered by HyperKitty version 1.3.9.