summaryrefslogtreecommitdiff
path: root/libs/lua/lua.cc
blob: 7eed622f9bb9cfb11c5d706dc35756d36670474f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/* This is a C++ wrapper to compile the lua C code
 * with settings appropriate for including it with
 * Ardour.
 */

#include "lua/liblua_visibility.h"

#if _MSC_VER
# pragma push_macro("_CRT_SECURE_NO_WARNINGS")
#  ifndef _CRT_SECURE_NO_WARNINGS
#    define _CRT_SECURE_NO_WARNINGS
#  endif
#elif defined(__clang__)
#  pragma clang diagnostic push
#  pragma clang diagnostic ignored "-Wcast-qual"
#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
#  pragma GCC diagnostic push
#  pragma GCC diagnostic ignored "-Wcast-qual"
#endif

// forward ardour's defines to luaconf.h
#ifdef PLATFORM_WINDOWS
#  define LUA_USE_WINDOWS
#elif defined __APPLE__
#  define LUA_USE_MACOSX
#else
#  define LUA_USE_LINUX
#endif

// forward liblua visibility to luaconf.h
#ifdef LIBLUA_BUILD_AS_DLL
#define LUA_BUILD_AS_DLL
#endif

extern "C"
{

#define lobject_c
#define lvm_c
#define LUA_CORE
#define LUA_LIB
#include "lua-5.3.3/luaconf.h"
#undef lobject_c
#undef lvm_c
#undef LUA_CORE
#undef LUA_LIB

// override luaconf.h symbol export
#ifdef LIBLUA_STATIC // static lib (no DLL)
#  undef LUA_API
#  undef LUALIB_API
#  undef LUAMOD_API
#  define LUA_API     extern "C"
#  define LUALIB_API  LUA_API
#  define LUAMOD_API  LUALIB_API
#endif

// disable support for extenal libs
#undef LUA_DL_DLL
#undef LUA_USE_DLOPEN

// enable bit lib
#define LUA_COMPAT_BITLIB

#if _MSC_VER
#pragma warning (push)
#pragma warning (disable: 4244) /* Possible loss of data */
#pragma warning (disable: 4702) /* Unreachable code */
#endif

#include "lua-5.3.3/ltable.c"

#include "lua-5.3.3/lauxlib.c"
#include "lua-5.3.3/lbaselib.c"

#include "lua-5.3.3/lbitlib.c"
#include "lua-5.3.3/lcorolib.c"
#include "lua-5.3.3/ldblib.c"
#include "lua-5.3.3/linit.c"
#include "lua-5.3.3/liolib.c"
#include "lua-5.3.3/lmathlib.c"
#include "lua-5.3.3/loslib.c"
#include "lua-5.3.3/lstrlib.c"
#include "lua-5.3.3/ltablib.c"

#include "lua-5.3.3/lapi.c"
#include "lua-5.3.3/lcode.c"
#include "lua-5.3.3/lctype.c"
#include "lua-5.3.3/ldebug.c"
#include "lua-5.3.3/ldo.c"
#include "lua-5.3.3/ldump.c"
#include "lua-5.3.3/lfunc.c"
#include "lua-5.3.3/lgc.c"
#include "lua-5.3.3/llex.c"
#include "lua-5.3.3/lmem.c"
#include "lua-5.3.3/lobject.c"
#include "lua-5.3.3/lopcodes.c"
#include "lua-5.3.3/lparser.c"
#include "lua-5.3.3/lstate.c"
#include "lua-5.3.3/lstring.c"
#include "lua-5.3.3/ltm.c"
#include "lua-5.3.3/lundump.c"
#include "lua-5.3.3/lutf8lib.c"
#include "lua-5.3.3/lvm.c"
#include "lua-5.3.3/lzio.c"

#include "lua-5.3.3/loadlib.c"

#if _MSC_VER
#pragma warning (pop)
#endif

} // end extern "C"

#if _MSC_VER
#  pragma pop_macro("_CRT_SECURE_NO_WARNINGS")
#elif defined(__clang__)
#  pragma clang diagnostic pop
#elif __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)
#  pragma GCC diagnostic pop
#endif