{"id":22409425,"url":"https://github.com/ilyasergey/ghc-xappfix","last_synced_at":"2025-03-27T02:22:03.827Z","repository":{"id":71519359,"uuid":"3669886","full_name":"ilyasergey/GHC-XAppFix","owner":"ilyasergey","description":"Extension of Glasgow Haskell Compiler to support recursive applicative bindings","archived":false,"fork":false,"pushed_at":"2012-06-05T11:16:33.000Z","size":62292,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"appfix","last_synced_at":"2025-02-01T07:43:42.282Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://github.com/ilyasergey/GHC-XAppFix/wiki","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilyasergey.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-03-09T11:03:54.000Z","updated_at":"2016-08-15T16:27:14.000Z","dependencies_parsed_at":"2023-02-21T23:00:09.659Z","dependency_job_id":null,"html_url":"https://github.com/ilyasergey/GHC-XAppFix","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyasergey%2FGHC-XAppFix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyasergey%2FGHC-XAppFix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyasergey%2FGHC-XAppFix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilyasergey%2FGHC-XAppFix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilyasergey","download_url":"https://codeload.github.com/ilyasergey/GHC-XAppFix/tar.gz/refs/heads/appfix","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245767540,"owners_count":20668870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-05T12:07:41.610Z","updated_at":"2025-03-27T02:22:03.808Z","avatar_url":"https://github.com/ilyasergey.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"The Glasgow Haskell Compiler\n============================\n\nThis is the source tree for GHC, a compiler and interactive\nenvironment for the Haskell functional programming language.\n\nFor more information, visit GHC's web site:\n\n  http://www.haskell.org/ghc/\n\nInformation for developers of GHC can be found here:\n\n  http://hackage.haskell.org/trac/ghc/\n\n\nGetting the Source\n==================\n\nThere are two ways to get a source tree:\n\n  1. Download source tarballs\n  ---------------------------\n\n  Download the GHC source distribution:\n\n      ghc-\u003cversion\u003e-src.tar.bz2\n\n  which contains GHC itself and the \"boot\" libraries.\n\n  2. Check out the source code from git\n  -------------------------------------\n\n  First get the GHC git repository:\n\n    $ git clone http://darcs.haskell.org/ghc.git/\n\n  Then run the sync-all script in that repository\n  to get the other repositories:\n\n     $ cd ghc\n     $ ./sync-all get\n\n  This checks out the \"boot\" packages.\n\n\nBuilding \u0026 Installing\n=====================\n\nFor full information on building GHC, see the GHC Building Guide [3].\nHere follows a summary - if you get into trouble, the Building Guide\nhas all the answers.\n\nBefore building GHC you may need to install some other tools and\nlibraries.  See \"Setting up your system for building GHC\" [8].\n\nNB. in particular you need GHC installed in order to build GHC,\nbecause the compiler is itself written in Haskell.  For instructions\non how to port GHC to a new platform, see the Building Guide [3].\n\nFor building library documentation, you'll need Haddock [6].  To build\nthe compiler documentation, you need a good DocBook XML toolchain and\ndblatex.\n\nQuick start:  the following gives you a default build:\n\n    $ perl boot\n    $ ./configure\n    $ make\n    $ make install\n\nThe \"perl boot\" step is only necessary if this is a tree checked out\nfrom git.  For source distributions downloaded from GHC's web site,\nthis step has already been performed.\n\nThese steps give you the default build, which includes everything\noptimised and built in various ways (eg. profiling libs are built).\nIt can take a long time.  To customise the build, see the file HACKING.\n\nOnce you have a build you need to keep it going.  You need to keep all\nrepos in sync with the sync-all script [7].  To get the latest changes:\n\n    $ ./sync-all pull\n    $ ./sync-all get\n\n\nReferences\n==========\n\n [1] http://www.haskell.org/ghc/                        GHC Home Page\n [2] http://hackage.haskell.org/trac/ghc                GHC Developer's Wiki\n [3] http://hackage.haskell.org/trac/ghc/wiki/Building  Building Guide\n [4] http://www.haskell.org/happy/                      Happy\n [5] http://www.haskell.org/alex/                       Alex\n [6] http://www.haskell.org/haddock/                    Haddock\n [7] http://hackage.haskell.org/trac/ghc/wiki/Building/SyncAll\n [8] http://hackage.haskell.org/trac/ghc/wiki/Building/Preparation\n\n\nContributors\n============\n\nPlease see\n\n   http://www.haskell.org/ghc/contributors.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyasergey%2Fghc-xappfix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filyasergey%2Fghc-xappfix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filyasergey%2Fghc-xappfix/lists"}