From 9338ef15c223c3188d627d9756f4180ed59777dd Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 2 Jul 2018 11:08:57 +0200 Subject: Wire up lightning into libguile build * libguile/Makefile.am (AM_CPPFLAGS): (libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES): If ENABLE_JIT, build lightning. (EXTRA_DIST): Add lightning files. * libguile/lightning/lightning.am (lightning_extra_files): Add COPYING and related files to the dist. * libguile/jit.c: * libguile/jit.h: New files. --- libguile/jit.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 libguile/jit.h (limited to 'libguile/jit.h') diff --git a/libguile/jit.h b/libguile/jit.h new file mode 100644 index 000000000..1c27e8628 --- /dev/null +++ b/libguile/jit.h @@ -0,0 +1,31 @@ +#ifndef SCM_JIT_H +#define SCM_JIT_H + +/* Copyright 2018 + Free Software Foundation, Inc. + + This file is part of Guile. + + Guile is free software: you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Guile is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public + License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with Guile. If not, see + . */ + + + +#include "libguile/scm.h" + + + +SCM_INTERNAL void scm_init_jit (void); + +#endif /* SCM_JIT_H */ -- cgit v1.2.1