From 8e13db27e8976d08daf64662541277c390b2c1d6 Mon Sep 17 00:00:00 2001 From: Luc Tielen Date: Sun, 20 Oct 2024 22:09:22 +0200 Subject: [PATCH] Remove build-tools from cabal, update README --- README.md | 5 ++++- llvm-codegen.cabal | 2 -- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b18357..30eb2ba 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,10 @@ A Haskell library for generating LLVM code. Inspired by the `llvm-hs`, `llvm-hs-pure`, `llvm-hs-combinators` and the `llvm-hs-pretty` libraries. **NOTE:** WIP, but if you only need the provided instructions it's usable (and -tested). +tested). Used inside the [eclair compiler](https://github.com/luc-tielen/eclair-lang.git). + +Note that it requires LLVM to be installed on your system and available on your +`$PATH`! ## Why another LLVM library? diff --git a/llvm-codegen.cabal b/llvm-codegen.cabal index a1b115a..b87732c 100644 --- a/llvm-codegen.cabal +++ b/llvm-codegen.cabal @@ -66,7 +66,6 @@ library -Wall -fhide-source-paths -fno-show-valid-hole-fits -fno-sort-valid-hole-fits -optl=-lLLVM - build-tools: llvm-config >=0 build-depends: base >=4.7 && <5 , bytestring >=0.11 && <0.12 @@ -113,7 +112,6 @@ test-suite llvm-codegen-test -Wall -fhide-source-paths -fno-show-valid-hole-fits -fno-sort-valid-hole-fits -optl=-lLLVM - build-tools: llvm-config >=0 build-depends: base >=4.7 && <5 , bytestring >=0.11 && <0.12