-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.mk-sample
41 lines (32 loc) · 988 Bytes
/
config.mk-sample
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
# this is sample configuration file
# enable D3D support (in development)
#D3DHAL=1
# compiler for target (mingw)
CC=gcc
CXX=g++
WINDRES=windres
DLLTOOL=dlltool
# compiler for host (for create makeshared binary)
HOST_CC=$(CC)
# optimize for release
RELEASE=1
# generate debug informations (not usable with RELEASE=1)
#DEBUG=1
# how much can be debuging information verbose, efective (not usable with RELEASE=1)
#DDDEBUG=4
#
# Some heavy debug options
#
# filter debug messages by topic:
#TUNE += -DDEBUG_TOPIC=BLEND
# outpu thread id in debug log
#TUNE += -DDEBUG_THREAD
# extra compiler option:
# this should be used for targeting Windows 95
TUNE=-march=pentium2 -mtune=core2
# this is for Windows 98/Me only and Core2 (SSSE3) CPU (minimal HW for virtualization)
#TUNE=-march=core2
# this is the highest possible optimalization target (SSE4 and without AVX) for Windows 98/Me
#TUNE=-march=westmere
# faster code generation
TUNE += -pipe