aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/luajit-2.0/src/ljamalg.c
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/luajit-2.0/src/ljamalg.c')
-rw-r--r--libraries/luajit-2.0/src/ljamalg.c90
1 files changed, 0 insertions, 90 deletions
diff --git a/libraries/luajit-2.0/src/ljamalg.c b/libraries/luajit-2.0/src/ljamalg.c
deleted file mode 100644
index 17c4b65..0000000
--- a/libraries/luajit-2.0/src/ljamalg.c
+++ /dev/null
@@ -1,90 +0,0 @@
1/*
2** LuaJIT core and libraries amalgamation.
3** Copyright (C) 2005-2011 Mike Pall. See Copyright Notice in luajit.h
4*/
5
6/*
7+--------------------------------------------------------------------------+
8| WARNING: Compiling the amalgamation needs a lot of virtual memory |
9| (around 200 MB with GCC 4.x)! If you don't have enough physical memory |
10| your machine will start swapping to disk and the compile will not finish |
11| within a reasonable amount of time. |
12| So either compile on a bigger machine or use the non-amalgamated build. |
13+--------------------------------------------------------------------------+
14*/
15
16#define ljamalg_c
17#define LUA_CORE
18
19/* To get the mremap prototype. Must be defined before any system includes. */
20#if defined(__linux__) && !defined(_GNU_SOURCE)
21#define _GNU_SOURCE
22#endif
23
24#ifndef WINVER
25#define WINVER 0x0500
26#endif
27
28#include "lua.h"
29#include "lauxlib.h"
30
31#include "lj_gc.c"
32#include "lj_err.c"
33#include "lj_char.c"
34#include "lj_bc.c"
35#include "lj_obj.c"
36#include "lj_str.c"
37#include "lj_tab.c"
38#include "lj_func.c"
39#include "lj_udata.c"
40#include "lj_meta.c"
41#include "lj_debug.c"
42#include "lj_state.c"
43#include "lj_dispatch.c"
44#include "lj_vmevent.c"
45#include "lj_vmmath.c"
46#include "lj_api.c"
47#include "lj_lex.c"
48#include "lj_parse.c"
49#include "lj_bcread.c"
50#include "lj_bcwrite.c"
51#include "lj_ctype.c"
52#include "lj_cdata.c"
53#include "lj_cconv.c"
54#include "lj_ccall.c"
55#include "lj_ccallback.c"
56#include "lj_carith.c"
57#include "lj_clib.c"
58#include "lj_cparse.c"
59#include "lj_lib.c"
60#include "lj_ir.c"
61#include "lj_opt_mem.c"
62#include "lj_opt_fold.c"
63#include "lj_opt_narrow.c"
64#include "lj_opt_dce.c"
65#include "lj_opt_loop.c"
66#include "lj_opt_split.c"
67#include "lj_mcode.c"
68#include "lj_snap.c"
69#include "lj_record.c"
70#include "lj_crecord.c"
71#include "lj_ffrecord.c"
72#include "lj_asm.c"
73#include "lj_trace.c"
74#include "lj_gdbjit.c"
75#include "lj_alloc.c"
76
77#include "lib_aux.c"
78#include "lib_base.c"
79#include "lib_math.c"
80#include "lib_string.c"
81#include "lib_table.c"
82#include "lib_io.c"
83#include "lib_os.c"
84#include "lib_package.c"
85#include "lib_debug.c"
86#include "lib_bit.c"
87#include "lib_jit.c"
88#include "lib_ffi.c"
89#include "lib_init.c"
90