summaryrefslogtreecommitdiff
path: root/libguile/jit.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2018-07-02 11:08:57 +0200
committerAndy Wingo <wingo@pobox.com>2018-07-02 11:08:57 +0200
commit9338ef15c223c3188d627d9756f4180ed59777dd (patch)
tree1475e13c0cb94514bb51c8bb400058d26e5ed203 /libguile/jit.h
parent2d8480388463f4a520823533b3de65120a2ae413 (diff)
downloadguile-9338ef15c223c3188d627d9756f4180ed59777dd.tar.gz
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.
Diffstat (limited to 'libguile/jit.h')
-rw-r--r--libguile/jit.h31
1 files changed, 31 insertions, 0 deletions
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
+ <https://www.gnu.org/licenses/>. */
+
+
+
+#include "libguile/scm.h"
+
+
+
+SCM_INTERNAL void scm_init_jit (void);
+
+#endif /* SCM_JIT_H */