diff options
author | Nicolás Bértolo <nicolasbertolo@gmail.com> | 2020-05-11 20:43:06 -0300 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-05-23 08:02:14 +0100 |
commit | 483cdf7a7942c91f6691953c9fe4618194dd175b (patch) | |
tree | 6c635f4d4a6a091dd7c7a0177a2173ca240929ed /src/comp.h | |
parent | 0a2ac47909c497d299e5d5cc111cf77206dcda9b (diff) | |
download | emacs-483cdf7a7942c91f6691953c9fe4618194dd175b.tar.gz emacs-483cdf7a7942c91f6691953c9fe4618194dd175b.tar.bz2 emacs-483cdf7a7942c91f6691953c9fe4618194dd175b.zip |
Load libgccjit dynamically in Windows.
* configure.ac: don't add linker flags if compiling on
Windows. Compile dynlib.c if modules or native compilation are
enabled. Always compile comp.c
* lisp/term/w32-win.el: Map 'gccjit to "libgccjit.dll" in
`dynamic-library-alist`.
* src/Makefile.in: Update comments. Update to handle changes in
configure.ac.
* src/comp.c: Add declarations of used libgccjit functions using
DEF_DLL_FN. Add calls to load_gccjit_if_necessary() where necessary.
Add `native-comp-available-p`
* src/comp.h: Remove Fnative_elisp_load. Add syms_of_comp().
* src/emacs.c (main): Always call syms_of_comp()
* src/w32.c (globals_of_w32): Clear Vlibrary_cache when starting
because the libraries loaded when dumping will not be loaded when
starting.
* src/w32fns.c: Add Qgccjit symbol.
Diffstat (limited to 'src/comp.h')
-rw-r--r-- | src/comp.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/comp.h b/src/comp.h index b03a8055142..36e7cdf4413 100644 --- a/src/comp.h +++ b/src/comp.h @@ -90,11 +90,7 @@ maybe_defer_native_compilation (Lisp_Object function_name, Lisp_Object definition) {} -static inline Lisp_Object -Fnative_elisp_load (Lisp_Object file, Lisp_Object late_load) -{ - eassume (false); -} +extern void syms_of_comp (void); #endif |