source: tags/arb-7.0/config.makefile.template

Last change on this file was 18426, checked in by westram, 4 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1# --------------------------------------------------------------------------------                                         -*-Mode: Makefile;-*- (emacs)
2# config.makefile            = configuration used to build arb (EDIT THAT FILE)
3# config.makefile.template   = default for config.makefile
4# --------------------------------------------------------------------------------
5
6# Enter your name (upper case, no spaces) here, to enable '#ifdef DEVEL_YOURNAME #endif' sections
7# (Release version uses 'RELEASE')
8DEVELOPER := ANY
9OPENGL := 0# Include features using OPENGL?
10
11# --------------------------------------------------------------------------------
12# developer section (everybody else should use defaults)
13
14DEBUG := 0# build with debug information
15
16UNIT_TESTS := 0# include and perform unit tests
17COVERAGE := 0# gcov support (0=off(=default),1=on,2=on but hidden)
18
19#SANITIZE := all# build with Sanitizer? (defaults to 0; see Makefile for details)
20#IGNORE_LEAKS := 1# ignore found leaks (defaults to 0; applies only to SANITIZE=1/all)
21#SHOWTODO := 0# show todos? (defaults to 0, depends on DEVELOPER)
22
23# better do not change the following settings:
24STABS := 0# force stabs format? (not recommended; affects SANITIZE stackdump locations)
25TRACESYM := 1# insert symbols for meaningful backtraces into executables
26DEBUG_GRAPHICS := 0# force instant graphic update
27ARB_64 := 1# compile 64bit ARB version (32bit version no longer supported)
28
29# --------------------------------------------------------------------------------
30# target machine section
31# [Note: Uncomment one section, depending on your machine type and compiler options]
32
33# ------------
34# Section: Linux
35
36MACH  := LINUX
37LINUX := 1
38
39# DEBIAN := 1# used by maintainer only
40
41# ------------
42# Section: Mac OSX
43
44# MACH   := DARWIN
45# DARWIN := 1
46
47# ------------
Note: See TracBrowser for help on using the repository browser.