From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnout Vandecappelle Date: Sun, 20 Oct 2019 00:47:19 +0200 Subject: [Buildroot] [RFC PATCH 1/4] llvm: disable bindings on host In-Reply-To: <20190724173538.22913-2-joseph.kogut@gmail.com> References: <20190724173538.22913-1-joseph.kogut@gmail.com> <20190724173538.22913-2-joseph.kogut@gmail.com> Message-ID: <0f630437-4501-2ff6-dae1-f7178e5e91cb@mind.be> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net On 24/07/2019 19:35, Joseph Kogut wrote: > Signed-off-by: Joseph Kogut Can you explain why this is needed/wanted? Regards, Arnout > --- > package/llvm/llvm.mk | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/package/llvm/llvm.mk b/package/llvm/llvm.mk > index 3c62285188..11c8d90af0 100644 > --- a/package/llvm/llvm.mk > +++ b/package/llvm/llvm.mk > @@ -184,7 +184,8 @@ LLVM_CONF_OPTS += -DLLVM_HOST_TRIPLE=$(GNU_TARGET_NAME) > # check preventively. Building the Go and OCaml bindings is yet unsupported. > HOST_LLVM_CONF_OPTS += \ > -DGO_EXECUTABLE=GO_EXECUTABLE-NOTFOUND \ > - -DOCAMLFIND=OCAMLFIND-NOTFOUND > + -DOCAMLFIND=OCAMLFIND-NOTFOUND \ > + -DLLVM_ENABLE_BINDINGS=OFF > > # Builds a release host tablegen that gets used during the LLVM build. > HOST_LLVM_CONF_OPTS += -DLLVM_OPTIMIZED_TABLEGEN=ON >