x64: Allow building without external unwinder.
[luajit-2.0.git] / src / Makefile
blob5021e479ab63f0c8b7f8a1f0afdcb21f2b53f946
1 ##############################################################################
2 # LuaJIT Makefile. Requires GNU Make.
4 # Please read doc/install.html before changing any variables!
6 # Suitable for POSIX platforms (Linux, *BSD, OSX etc.).
7 # Also works with MinGW and Cygwin on Windows.
8 # Please check msvcbuild.bat for building with MSVC on Windows.
10 # Copyright (C) 2005-2015 Mike Pall. See Copyright Notice in luajit.h
11 ##############################################################################
13 MAJVER= 2
14 MINVER= 0
15 RELVER= 4
16 ABIVER= 5.1
17 NODOTABIVER= 51
19 ##############################################################################
20 ############################# COMPILER OPTIONS #############################
21 ##############################################################################
22 # These options mainly affect the speed of the JIT compiler itself, not the
23 # speed of the JIT-compiled code. Turn any of the optional settings on by
24 # removing the '#' in front of them. Make sure you force a full recompile
25 # with "make clean", followed by "make" if you change any options.
27 # LuaJIT builds as a native 32 or 64 bit binary by default.
28 CC= gcc
30 # Use this if you want to force a 32 bit build on a 64 bit multilib OS.
31 #CC= gcc -m32
33 # Since the assembler part does NOT maintain a frame pointer, it's pointless
34 # to slow down the C part by not omitting it. Debugging, tracebacks and
35 # unwinding are not affected -- the assembler part has frame unwind
36 # information and GCC emits it where needed (x64) or with -g (see CCDEBUG).
37 CCOPT= -O2 -fomit-frame-pointer
38 # Use this if you want to generate a smaller binary (but it's slower):
39 #CCOPT= -Os -fomit-frame-pointer
40 # Note: it's no longer recommended to use -O3 with GCC 4.x.
41 # The I-Cache bloat usually outweighs the benefits from aggressive inlining.
43 # Target-specific compiler options:
45 # x86 only: it's recommended to compile at least for i686. Better yet,
46 # compile for an architecture that has SSE2, too (-msse -msse2).
48 # x86/x64 only: For GCC 4.2 or higher and if you don't intend to distribute
49 # the binaries to a different machine you could also use: -march=native
51 CCOPT_x86= -march=i686
52 CCOPT_x64=
53 CCOPT_arm=
54 CCOPT_ppc=
55 CCOPT_ppcspe=
56 CCOPT_mips=
58 CCDEBUG=
59 # Uncomment the next line to generate debug information:
60 #CCDEBUG= -g
62 CCWARN= -Wall
63 # Uncomment the next line to enable more warnings:
64 #CCWARN+= -Wextra -Wdeclaration-after-statement -Wredundant-decls -Wshadow -Wpointer-arith
66 ##############################################################################
68 ##############################################################################
69 ################################ BUILD MODE ################################
70 ##############################################################################
71 # The default build mode is mixed mode on POSIX. On Windows this is the same
72 # as dynamic mode.
74 # Mixed mode creates a static + dynamic library and a statically linked luajit.
75 BUILDMODE= mixed
77 # Static mode creates a static library and a statically linked luajit.
78 #BUILDMODE= static
80 # Dynamic mode creates a dynamic library and a dynamically linked luajit.
81 # Note: this executable will only run when the library is installed!
82 #BUILDMODE= dynamic
84 ##############################################################################
86 ##############################################################################
87 ################################# FEATURES #################################
88 ##############################################################################
89 # Enable/disable these features as needed, but make sure you force a full
90 # recompile with "make clean", followed by "make".
91 XCFLAGS=
93 # Permanently disable the FFI extension to reduce the size of the LuaJIT
94 # executable. But please consider that the FFI library is compiled-in,
95 # but NOT loaded by default. It only allocates any memory, if you actually
96 # make use of it.
97 #XCFLAGS+= -DLUAJIT_DISABLE_FFI
99 # Features from Lua 5.2 that are unlikely to break existing code are
100 # enabled by default. Some other features that *might* break some existing
101 # code (e.g. __pairs or os.execute() return values) can be enabled here.
102 # Note: this does not provide full compatibility with Lua 5.2 at this time.
103 #XCFLAGS+= -DLUAJIT_ENABLE_LUA52COMPAT
105 # Disable the JIT compiler, i.e. turn LuaJIT into a pure interpreter.
106 #XCFLAGS+= -DLUAJIT_DISABLE_JIT
108 # Some architectures (e.g. PPC) can use either single-number (1) or
109 # dual-number (2) mode. Uncomment one of these lines to override the
110 # default mode. Please see LJ_ARCH_NUMMODE in lj_arch.h for details.
111 #XCFLAGS+= -DLUAJIT_NUMMODE=1
112 #XCFLAGS+= -DLUAJIT_NUMMODE=2
114 ##############################################################################
116 ##############################################################################
117 ############################ DEBUGGING SUPPORT #############################
118 ##############################################################################
119 # Enable these options as needed, but make sure you force a full recompile
120 # with "make clean", followed by "make".
121 # Note that most of these are NOT suitable for benchmarking or release mode!
123 # Use the system provided memory allocator (realloc) instead of the
124 # bundled memory allocator. This is slower, but sometimes helpful for
125 # debugging. This option cannot be enabled on x64, since realloc usually
126 # doesn't return addresses in the right address range.
127 # OTOH this option is mandatory for Valgrind's memcheck tool on x64 and
128 # the only way to get useful results from it for all other architectures.
129 #XCFLAGS+= -DLUAJIT_USE_SYSMALLOC
131 # This define is required to run LuaJIT under Valgrind. The Valgrind
132 # header files must be installed. You should enable debug information, too.
133 # Use --suppressions=lj.supp to avoid some false positives.
134 #XCFLAGS+= -DLUAJIT_USE_VALGRIND
136 # This is the client for the GDB JIT API. GDB 7.0 or higher is required
137 # to make use of it. See lj_gdbjit.c for details. Enabling this causes
138 # a non-negligible overhead, even when not running under GDB.
139 #XCFLAGS+= -DLUAJIT_USE_GDBJIT
141 # Turn on assertions for the Lua/C API to debug problems with lua_* calls.
142 # This is rather slow -- use only while developing C libraries/embeddings.
143 #XCFLAGS+= -DLUA_USE_APICHECK
145 # Turn on assertions for the whole LuaJIT VM. This significantly slows down
146 # everything. Use only if you suspect a problem with LuaJIT itself.
147 #XCFLAGS+= -DLUA_USE_ASSERT
149 ##############################################################################
150 # You probably don't need to change anything below this line!
151 ##############################################################################
153 ##############################################################################
154 # Flags and options for host and target.
155 ##############################################################################
157 # You can override the following variables at the make command line:
158 # CC HOST_CC STATIC_CC DYNAMIC_CC
159 # CFLAGS HOST_CFLAGS TARGET_CFLAGS
160 # LDFLAGS HOST_LDFLAGS TARGET_LDFLAGS TARGET_SHLDFLAGS
161 # LIBS HOST_LIBS TARGET_LIBS
162 # CROSS HOST_SYS TARGET_SYS TARGET_FLAGS
164 # Cross-compilation examples:
165 # make HOST_CC="gcc -m32" CROSS=i586-mingw32msvc- TARGET_SYS=Windows
166 # make HOST_CC="gcc -m32" CROSS=powerpc-linux-gnu-
168 CCOPTIONS= $(CCDEBUG) $(CCOPT) $(CCWARN) $(XCFLAGS) $(CFLAGS)
169 LDOPTIONS= $(CCDEBUG) $(LDFLAGS)
171 HOST_CC= $(CC)
172 HOST_RM= rm -f
173 # If left blank, minilua is built and used. You can supply an installed
174 # copy of (plain) Lua 5.1 or 5.2, plus Lua BitOp. E.g. with: HOST_LUA=lua
175 HOST_LUA=
177 HOST_XCFLAGS= -I.
178 HOST_XLDFLAGS=
179 HOST_XLIBS=
180 HOST_ACFLAGS= $(CCOPTIONS) $(HOST_XCFLAGS) $(TARGET_ARCH) $(HOST_CFLAGS)
181 HOST_ALDFLAGS= $(LDOPTIONS) $(HOST_XLDFLAGS) $(HOST_LDFLAGS)
182 HOST_ALIBS= $(HOST_XLIBS) $(LIBS) $(HOST_LIBS)
184 STATIC_CC = $(CROSS)$(CC)
185 DYNAMIC_CC = $(CROSS)$(CC) -fPIC
186 TARGET_CC= $(STATIC_CC)
187 TARGET_STCC= $(STATIC_CC)
188 TARGET_DYNCC= $(DYNAMIC_CC)
189 TARGET_LD= $(CROSS)$(CC)
190 TARGET_AR= $(CROSS)ar rcus
191 TARGET_STRIP= $(CROSS)strip
193 TARGET_LIBPATH= $(or $(PREFIX),/usr/local)/$(or $(MULTILIB),lib)
194 TARGET_SONAME= libluajit-$(ABIVER).so.$(MAJVER)
195 TARGET_DYLIBNAME= libluajit-$(ABIVER).$(MAJVER).dylib
196 TARGET_DYLIBPATH= $(TARGET_LIBPATH)/$(TARGET_DYLIBNAME)
197 TARGET_DLLNAME= lua$(NODOTABIVER).dll
198 TARGET_XSHLDFLAGS= -shared -fPIC -Wl,-soname,$(TARGET_SONAME)
199 TARGET_DYNXLDOPTS=
201 TARGET_LFSFLAGS= -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
202 TARGET_XCFLAGS= $(TARGET_LFSFLAGS) -U_FORTIFY_SOURCE
203 TARGET_XLDFLAGS=
204 TARGET_XLIBS= -lm
205 TARGET_TCFLAGS= $(CCOPTIONS) $(TARGET_XCFLAGS) $(TARGET_FLAGS) $(TARGET_CFLAGS)
206 TARGET_ACFLAGS= $(CCOPTIONS) $(TARGET_XCFLAGS) $(TARGET_FLAGS) $(TARGET_CFLAGS)
207 TARGET_ALDFLAGS= $(LDOPTIONS) $(TARGET_XLDFLAGS) $(TARGET_FLAGS) $(TARGET_LDFLAGS)
208 TARGET_ASHLDFLAGS= $(LDOPTIONS) $(TARGET_XSHLDFLAGS) $(TARGET_FLAGS) $(TARGET_SHLDFLAGS)
209 TARGET_ALIBS= $(TARGET_XLIBS) $(LIBS) $(TARGET_LIBS)
211 TARGET_TESTARCH=$(shell $(TARGET_CC) $(TARGET_TCFLAGS) -E lj_arch.h -dM)
212 ifneq (,$(findstring LJ_TARGET_X64 ,$(TARGET_TESTARCH)))
213 TARGET_LJARCH= x64
214 else
215 ifneq (,$(findstring LJ_TARGET_X86 ,$(TARGET_TESTARCH)))
216 TARGET_LJARCH= x86
217 else
218 ifneq (,$(findstring LJ_TARGET_ARM ,$(TARGET_TESTARCH)))
219 TARGET_LJARCH= arm
220 else
221 ifneq (,$(findstring LJ_TARGET_PPC ,$(TARGET_TESTARCH)))
222 TARGET_LJARCH= ppc
223 else
224 ifneq (,$(findstring LJ_TARGET_PPCSPE ,$(TARGET_TESTARCH)))
225 TARGET_LJARCH= ppcspe
226 else
227 ifneq (,$(findstring LJ_TARGET_MIPS ,$(TARGET_TESTARCH)))
228 ifneq (,$(findstring MIPSEL ,$(TARGET_TESTARCH)))
229 TARGET_ARCH= -D__MIPSEL__=1
230 endif
231 TARGET_LJARCH= mips
232 else
233 $(error Unsupported target architecture)
234 endif
235 endif
236 endif
237 endif
238 endif
239 endif
241 ifneq (,$(findstring LJ_TARGET_PS3 1,$(TARGET_TESTARCH)))
242 TARGET_SYS= PS3
243 TARGET_ARCH+= -D__CELLOS_LV2__
244 TARGET_XCFLAGS+= -DLUAJIT_USE_SYSMALLOC
245 endif
247 TARGET_XCFLAGS+= $(CCOPT_$(TARGET_LJARCH))
248 TARGET_ARCH+= $(patsubst %,-DLUAJIT_TARGET=LUAJIT_ARCH_%,$(TARGET_LJARCH))
250 ifneq (,$(PREFIX))
251 ifneq (/usr/local,$(PREFIX))
252 TARGET_XCFLAGS+= -DLUA_ROOT=\"$(PREFIX)\"
253 ifneq (/usr,$(PREFIX))
254 TARGET_DYNXLDOPTS= -Wl,-rpath,$(TARGET_LIBPATH)
255 endif
256 endif
257 endif
258 ifneq (,$(MULTILIB))
259 TARGET_XCFLAGS+= -DLUA_MULTILIB=\"$(MULTILIB)\"
260 endif
261 ifneq (,$(LMULTILIB))
262 TARGET_XCFLAGS+= -DLUA_LMULTILIB=\"$(LMULTILIB)\"
263 endif
265 ##############################################################################
266 # System detection.
267 ##############################################################################
269 ifeq (Windows,$(findstring Windows,$(OS))$(MSYSTEM)$(TERM))
270 HOST_SYS= Windows
271 HOST_RM= del
272 else
273 HOST_SYS:= $(shell uname -s)
274 ifneq (,$(findstring MINGW,$(HOST_SYS)))
275 HOST_SYS= Windows
276 HOST_MSYS= mingw
277 endif
278 ifneq (,$(findstring CYGWIN,$(HOST_SYS)))
279 HOST_SYS= Windows
280 HOST_MSYS= cygwin
281 endif
282 endif
284 TARGET_SYS?= $(HOST_SYS)
285 ifeq (Windows,$(TARGET_SYS))
286 TARGET_STRIP+= --strip-unneeded
287 TARGET_XSHLDFLAGS= -shared
288 TARGET_DYNXLDOPTS=
289 else
290 ifeq (,$(shell $(TARGET_CC) -o /dev/null -c -x c /dev/null -fno-stack-protector 2>/dev/null || echo 1))
291 TARGET_XCFLAGS+= -fno-stack-protector
292 endif
293 ifeq (Darwin,$(TARGET_SYS))
294 ifeq (,$(MACOSX_DEPLOYMENT_TARGET))
295 export MACOSX_DEPLOYMENT_TARGET=10.4
296 endif
297 TARGET_STRIP+= -x
298 TARGET_AR+= 2>/dev/null
299 TARGET_XSHLDFLAGS= -dynamiclib -single_module -undefined dynamic_lookup -fPIC
300 TARGET_DYNXLDOPTS=
301 TARGET_XSHLDFLAGS+= -install_name $(TARGET_DYLIBPATH) -compatibility_version $(MAJVER).$(MINVER) -current_version $(MAJVER).$(MINVER).$(RELVER)
302 ifeq (x64,$(TARGET_LJARCH))
303 TARGET_XLDFLAGS+= -pagezero_size 10000 -image_base 100000000
304 TARGET_XSHLDFLAGS+= -image_base 7fff04c4a000
305 endif
306 else
307 ifeq (iOS,$(TARGET_SYS))
308 TARGET_STRIP+= -x
309 TARGET_AR+= 2>/dev/null
310 TARGET_XSHLDFLAGS= -dynamiclib -single_module -undefined dynamic_lookup -fPIC
311 TARGET_DYNXLDOPTS=
312 TARGET_XSHLDFLAGS+= -install_name $(TARGET_DYLIBPATH) -compatibility_version $(MAJVER).$(MINVER) -current_version $(MAJVER).$(MINVER).$(RELVER)
313 else
314 ifneq (SunOS,$(TARGET_SYS))
315 ifneq (PS3,$(TARGET_SYS))
316 TARGET_XLDFLAGS+= -Wl,-E
317 endif
318 endif
319 ifeq (Linux,$(TARGET_SYS))
320 TARGET_XLIBS+= -ldl
321 endif
322 ifeq (GNU/kFreeBSD,$(TARGET_SYS))
323 TARGET_XLIBS+= -ldl
324 endif
325 endif
326 endif
327 endif
329 ifneq ($(HOST_SYS),$(TARGET_SYS))
330 ifeq (Windows,$(TARGET_SYS))
331 HOST_XCFLAGS+= -malign-double -DLUAJIT_OS=LUAJIT_OS_WINDOWS
332 else
333 ifeq (Linux,$(TARGET_SYS))
334 HOST_XCFLAGS+= -DLUAJIT_OS=LUAJIT_OS_LINUX
335 else
336 ifeq (Darwin,$(TARGET_SYS))
337 HOST_XCFLAGS+= -DLUAJIT_OS=LUAJIT_OS_OSX
338 else
339 ifeq (iOS,$(TARGET_SYS))
340 HOST_XCFLAGS+= -DLUAJIT_OS=LUAJIT_OS_OSX
341 else
342 HOST_XCFLAGS+= -DLUAJIT_OS=LUAJIT_OS_OTHER
343 endif
344 endif
345 endif
346 endif
347 endif
349 ifneq (,$(CCDEBUG))
350 TARGET_STRIP= @:
351 endif
353 ##############################################################################
354 # Files and pathnames.
355 ##############################################################################
357 MINILUA_O= host/minilua.o
358 MINILUA_LIBS= -lm
359 MINILUA_T= host/minilua
360 MINILUA_X= $(MINILUA_T)
362 ifeq (,$(HOST_LUA))
363 HOST_LUA= $(MINILUA_X)
364 DASM_DEP= $(MINILUA_T)
365 endif
367 DASM_DIR= ../dynasm
368 DASM= $(HOST_LUA) $(DASM_DIR)/dynasm.lua
369 DASM_XFLAGS=
370 DASM_AFLAGS=
371 DASM_ARCH= $(TARGET_LJARCH)
373 ifneq (,$(findstring LJ_ARCH_BITS 64,$(TARGET_TESTARCH)))
374 DASM_AFLAGS+= -D P64
375 endif
376 ifneq (,$(findstring LJ_HASJIT 1,$(TARGET_TESTARCH)))
377 DASM_AFLAGS+= -D JIT
378 endif
379 ifneq (,$(findstring LJ_HASFFI 1,$(TARGET_TESTARCH)))
380 DASM_AFLAGS+= -D FFI
381 endif
382 ifneq (,$(findstring LJ_DUALNUM 1,$(TARGET_TESTARCH)))
383 DASM_AFLAGS+= -D DUALNUM
384 endif
385 ifneq (,$(findstring LJ_ARCH_HASFPU 1,$(TARGET_TESTARCH)))
386 DASM_AFLAGS+= -D FPU
387 TARGET_ARCH+= -DLJ_ARCH_HASFPU=1
388 else
389 TARGET_ARCH+= -DLJ_ARCH_HASFPU=0
390 endif
391 ifeq (,$(findstring LJ_ABI_SOFTFP 1,$(TARGET_TESTARCH)))
392 DASM_AFLAGS+= -D HFABI
393 TARGET_ARCH+= -DLJ_ABI_SOFTFP=0
394 else
395 TARGET_ARCH+= -DLJ_ABI_SOFTFP=1
396 endif
397 ifneq (,$(findstring LJ_NO_UNWIND 1,$(TARGET_TESTARCH)))
398 DASM_AFLAGS+= -D NO_UNWIND
399 TARGET_ARCH+= -DLUAJIT_NO_UNWIND
400 endif
401 DASM_AFLAGS+= -D VER=$(subst LJ_ARCH_VERSION_,,$(filter LJ_ARCH_VERSION_%,$(subst LJ_ARCH_VERSION ,LJ_ARCH_VERSION_,$(TARGET_TESTARCH))))
402 ifeq (Windows,$(TARGET_SYS))
403 DASM_AFLAGS+= -D WIN
404 endif
405 ifeq (x86,$(TARGET_LJARCH))
406 ifneq (,$(findstring __SSE2__ 1,$(TARGET_TESTARCH)))
407 DASM_AFLAGS+= -D SSE
408 endif
409 else
410 ifeq (x64,$(TARGET_LJARCH))
411 DASM_ARCH= x86
412 else
413 ifeq (arm,$(TARGET_LJARCH))
414 ifeq (iOS,$(TARGET_SYS))
415 DASM_AFLAGS+= -D IOS
416 endif
417 else
418 ifeq (ppc,$(TARGET_LJARCH))
419 ifneq (,$(findstring LJ_ARCH_SQRT 1,$(TARGET_TESTARCH)))
420 DASM_AFLAGS+= -D SQRT
421 endif
422 ifneq (,$(findstring LJ_ARCH_ROUND 1,$(TARGET_TESTARCH)))
423 DASM_AFLAGS+= -D ROUND
424 endif
425 ifneq (,$(findstring LJ_ARCH_PPC64 1,$(TARGET_TESTARCH)))
426 DASM_AFLAGS+= -D GPR64
427 endif
428 ifeq (PS3,$(TARGET_SYS))
429 DASM_AFLAGS+= -D PPE -D TOC
430 endif
431 endif
432 endif
433 endif
434 endif
436 DASM_FLAGS= $(DASM_XFLAGS) $(DASM_AFLAGS)
437 DASM_DASC= vm_$(DASM_ARCH).dasc
439 BUILDVM_O= host/buildvm.o host/buildvm_asm.o host/buildvm_peobj.o \
440 host/buildvm_lib.o host/buildvm_fold.o
441 BUILDVM_T= host/buildvm
442 BUILDVM_X= $(BUILDVM_T)
444 HOST_O= $(MINILUA_O) $(BUILDVM_O)
445 HOST_T= $(MINILUA_T) $(BUILDVM_T)
447 LJVM_S= lj_vm.s
448 LJVM_O= lj_vm.o
449 LJVM_BOUT= $(LJVM_S)
450 LJVM_MODE= elfasm
452 LJLIB_O= lib_base.o lib_math.o lib_bit.o lib_string.o lib_table.o \
453 lib_io.o lib_os.o lib_package.o lib_debug.o lib_jit.o lib_ffi.o
454 LJLIB_C= $(LJLIB_O:.o=.c)
456 LJCORE_O= lj_gc.o lj_err.o lj_char.o lj_bc.o lj_obj.o \
457 lj_str.o lj_tab.o lj_func.o lj_udata.o lj_meta.o lj_debug.o \
458 lj_state.o lj_dispatch.o lj_vmevent.o lj_vmmath.o lj_strscan.o \
459 lj_api.o lj_lex.o lj_parse.o lj_bcread.o lj_bcwrite.o lj_load.o \
460 lj_ir.o lj_opt_mem.o lj_opt_fold.o lj_opt_narrow.o \
461 lj_opt_dce.o lj_opt_loop.o lj_opt_split.o lj_opt_sink.o \
462 lj_mcode.o lj_snap.o lj_record.o lj_crecord.o lj_ffrecord.o \
463 lj_asm.o lj_trace.o lj_gdbjit.o \
464 lj_ctype.o lj_cdata.o lj_cconv.o lj_ccall.o lj_ccallback.o \
465 lj_carith.o lj_clib.o lj_cparse.o \
466 lj_lib.o lj_alloc.o lib_aux.o \
467 $(LJLIB_O) lib_init.o
469 LJVMCORE_O= $(LJVM_O) $(LJCORE_O)
470 LJVMCORE_DYNO= $(LJVMCORE_O:.o=_dyn.o)
472 LIB_VMDEF= jit/vmdef.lua
473 LIB_VMDEFP= $(LIB_VMDEF)
475 LUAJIT_O= luajit.o
476 LUAJIT_A= libluajit.a
477 LUAJIT_SO= libluajit.so
478 LUAJIT_T= luajit
480 ALL_T= $(LUAJIT_T) $(LUAJIT_A) $(LUAJIT_SO) $(HOST_T)
481 ALL_HDRGEN= lj_bcdef.h lj_ffdef.h lj_libdef.h lj_recdef.h lj_folddef.h \
482 host/buildvm_arch.h
483 ALL_GEN= $(LJVM_S) $(ALL_HDRGEN) $(LIB_VMDEFP)
484 WIN_RM= *.obj *.lib *.exp *.dll *.exe *.manifest *.pdb *.ilk
485 ALL_RM= $(ALL_T) $(ALL_GEN) *.o host/*.o $(WIN_RM)
487 ##############################################################################
488 # Build mode handling.
489 ##############################################################################
491 # Mixed mode defaults.
492 TARGET_O= $(LUAJIT_A)
493 TARGET_T= $(LUAJIT_T) $(LUAJIT_SO)
494 TARGET_DEP= $(LIB_VMDEF) $(LUAJIT_SO)
496 ifeq (Windows,$(TARGET_SYS))
497 TARGET_DYNCC= $(STATIC_CC)
498 LJVM_MODE= peobj
499 LJVM_BOUT= $(LJVM_O)
500 LUAJIT_T= luajit.exe
501 ifeq (cygwin,$(HOST_MSYS))
502 LUAJIT_SO= cyg$(TARGET_DLLNAME)
503 else
504 LUAJIT_SO= $(TARGET_DLLNAME)
505 endif
506 # Mixed mode is not supported on Windows. And static mode doesn't work well.
507 # C modules cannot be loaded, because they bind to lua51.dll.
508 ifneq (static,$(BUILDMODE))
509 BUILDMODE= dynamic
510 TARGET_XCFLAGS+= -DLUA_BUILD_AS_DLL
511 endif
512 endif
513 ifeq (Darwin,$(TARGET_SYS))
514 LJVM_MODE= machasm
515 endif
516 ifeq (iOS,$(TARGET_SYS))
517 LJVM_MODE= machasm
518 endif
519 ifeq (SunOS,$(TARGET_SYS))
520 BUILDMODE= static
521 endif
522 ifeq (PS3,$(TARGET_SYS))
523 BUILDMODE= static
524 endif
526 ifeq (Windows,$(HOST_SYS))
527 MINILUA_T= host/minilua.exe
528 BUILDVM_T= host/buildvm.exe
529 ifeq (,$(HOST_MSYS))
530 MINILUA_X= host\minilua
531 BUILDVM_X= host\buildvm
532 ALL_RM:= $(subst /,\,$(ALL_RM))
533 endif
534 endif
536 ifeq (static,$(BUILDMODE))
537 TARGET_DYNCC= @:
538 TARGET_T= $(LUAJIT_T)
539 TARGET_DEP= $(LIB_VMDEF)
540 else
541 ifeq (dynamic,$(BUILDMODE))
542 ifneq (Windows,$(TARGET_SYS))
543 TARGET_CC= $(DYNAMIC_CC)
544 endif
545 TARGET_DYNCC= @:
546 LJVMCORE_DYNO= $(LJVMCORE_O)
547 TARGET_O= $(LUAJIT_SO)
548 TARGET_XLDFLAGS+= $(TARGET_DYNXLDOPTS)
549 else
550 ifeq (Darwin,$(TARGET_SYS))
551 TARGET_DYNCC= @:
552 LJVMCORE_DYNO= $(LJVMCORE_O)
553 endif
554 ifeq (iOS,$(TARGET_SYS))
555 TARGET_DYNCC= @:
556 LJVMCORE_DYNO= $(LJVMCORE_O)
557 endif
558 endif
559 endif
561 Q= @
562 E= @echo
564 #E= @:
566 ##############################################################################
567 # Make targets.
568 ##############################################################################
570 default all: $(TARGET_T)
572 amalg:
573 @grep "^[+|]" ljamalg.c
574 $(MAKE) all "LJCORE_O=ljamalg.o"
576 clean:
577 $(HOST_RM) $(ALL_RM)
579 depend:
580 @for file in $(ALL_HDRGEN); do \
581 test -f $$file || touch $$file; \
582 done
583 @$(HOST_CC) $(HOST_ACFLAGS) -MM *.c host/*.c | \
584 sed -e "s| [^ ]*/dasm_\S*\.h||g" \
585 -e "s|^\([^l ]\)|host/\1|" \
586 -e "s| lj_target_\S*\.h| lj_target_*.h|g" \
587 -e "s| lj_emit_\S*\.h| lj_emit_*.h|g" \
588 -e "s| lj_asm_\S*\.h| lj_asm_*.h|g" >Makefile.dep
589 @for file in $(ALL_HDRGEN); do \
590 test -s $$file || $(HOST_RM) $$file; \
591 done
593 .PHONY: default all amalg clean depend
595 ##############################################################################
596 # Rules for generated files.
597 ##############################################################################
599 $(MINILUA_T): $(MINILUA_O)
600 $(E) "HOSTLINK $@"
601 $(Q)$(HOST_CC) $(HOST_ALDFLAGS) -o $@ $(MINILUA_O) $(MINILUA_LIBS) $(HOST_ALIBS)
603 host/buildvm_arch.h: $(DASM_DASC) $(DASM_DEP)
604 $(E) "DYNASM $@"
605 $(Q)$(DASM) $(DASM_FLAGS) -o $@ $(DASM_DASC)
607 host/buildvm.o: $(DASM_DIR)/dasm_*.h
609 $(BUILDVM_T): $(BUILDVM_O)
610 $(E) "HOSTLINK $@"
611 $(Q)$(HOST_CC) $(HOST_ALDFLAGS) -o $@ $(BUILDVM_O) $(HOST_ALIBS)
613 $(LJVM_BOUT): $(BUILDVM_T)
614 $(E) "BUILDVM $@"
615 $(Q)$(BUILDVM_X) -m $(LJVM_MODE) -o $@
617 lj_bcdef.h: $(BUILDVM_T) $(LJLIB_C)
618 $(E) "BUILDVM $@"
619 $(Q)$(BUILDVM_X) -m bcdef -o $@ $(LJLIB_C)
621 lj_ffdef.h: $(BUILDVM_T) $(LJLIB_C)
622 $(E) "BUILDVM $@"
623 $(Q)$(BUILDVM_X) -m ffdef -o $@ $(LJLIB_C)
625 lj_libdef.h: $(BUILDVM_T) $(LJLIB_C)
626 $(E) "BUILDVM $@"
627 $(Q)$(BUILDVM_X) -m libdef -o $@ $(LJLIB_C)
629 lj_recdef.h: $(BUILDVM_T) $(LJLIB_C)
630 $(E) "BUILDVM $@"
631 $(Q)$(BUILDVM_X) -m recdef -o $@ $(LJLIB_C)
633 $(LIB_VMDEF): $(BUILDVM_T) $(LJLIB_C)
634 $(E) "BUILDVM $@"
635 $(Q)$(BUILDVM_X) -m vmdef -o $(LIB_VMDEFP) $(LJLIB_C)
637 lj_folddef.h: $(BUILDVM_T) lj_opt_fold.c
638 $(E) "BUILDVM $@"
639 $(Q)$(BUILDVM_X) -m folddef -o $@ lj_opt_fold.c
641 ##############################################################################
642 # Object file rules.
643 ##############################################################################
645 %.o: %.c
646 $(E) "CC $@"
647 $(Q)$(TARGET_DYNCC) $(TARGET_ACFLAGS) -c -o $(@:.o=_dyn.o) $<
648 $(Q)$(TARGET_CC) $(TARGET_ACFLAGS) -c -o $@ $<
650 %.o: %.s
651 $(E) "ASM $@"
652 $(Q)$(TARGET_DYNCC) $(TARGET_ACFLAGS) -c -o $(@:.o=_dyn.o) $<
653 $(Q)$(TARGET_CC) $(TARGET_ACFLAGS) -c -o $@ $<
655 $(LUAJIT_O):
656 $(E) "CC $@"
657 $(Q)$(TARGET_STCC) $(TARGET_ACFLAGS) -c -o $@ $<
659 $(HOST_O): %.o: %.c
660 $(E) "HOSTCC $@"
661 $(Q)$(HOST_CC) $(HOST_ACFLAGS) -c -o $@ $<
663 include Makefile.dep
665 ##############################################################################
666 # Target file rules.
667 ##############################################################################
669 $(LUAJIT_A): $(LJVMCORE_O)
670 $(E) "AR $@"
671 $(Q)$(TARGET_AR) $@ $(LJVMCORE_O)
673 # The dependency on _O, but linking with _DYNO is intentional.
674 $(LUAJIT_SO): $(LJVMCORE_O)
675 $(E) "DYNLINK $@"
676 $(Q)$(TARGET_LD) $(TARGET_ASHLDFLAGS) -o $@ $(LJVMCORE_DYNO) $(TARGET_ALIBS)
677 $(Q)$(TARGET_STRIP) $@
679 $(LUAJIT_T): $(TARGET_O) $(LUAJIT_O) $(TARGET_DEP)
680 $(E) "LINK $@"
681 $(Q)$(TARGET_LD) $(TARGET_ALDFLAGS) -o $@ $(LUAJIT_O) $(TARGET_O) $(TARGET_ALIBS)
682 $(Q)$(TARGET_STRIP) $@
683 $(E) "OK Successfully built LuaJIT"
685 ##############################################################################