-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.param
67 lines (62 loc) · 2.11 KB
/
config.param
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
##
## GNU Pth - The GNU Portable Threads
## Copyright (c) 1999-2006 Ralf S. Engelschall <[email protected]>
##
## This file is part of GNU Pth, a non-preemptive thread scheduling
## library which can be found at http://www.gnu.org/software/pth/.
##
## This library is free software; you can redistribute it and/or
## modify it under the terms of the GNU Lesser General Public
## License as published by the Free Software Foundation; either
## version 2.1 of the License, or (at your option) any later version.
##
## This library is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public
## License along with this library; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
## USA, or contact Ralf S. Engelschall <[email protected]>.
##
## config.param: predefined configure command line parameters
##
# ``Die Abk. fuer Abk. ist Abk.'' (german)
# Common parameters
common {
}
# build for testing
# (done on all testing platforms)
test {
--prefix=/tmp/pth
--enable-pthread
--enable-optimize
--enable-syscall-soft
}
# build for debugging
# (developer machine only)
install {
CC=/usr/opkg/bin/gcc IF test -f /usr/opkg/bin/gcc
--prefix=/usr/opkg/local/PKG/pth IF test -d /usr/opkg/local/PKG/pth/
--enable-batch
--enable-pthread
--enable-optimize
--enable-syscall-soft
--enable-syscall-hard
--disable-shared
}
# build for developing
# (developer machine only)
# [Hint: dmalloc -l dmalloc.log -i 1 debug1]
devel {
CC=/usr/opkg/bin/gcc IF test -f /usr/opkg/bin/gcc
--prefix=/usr/opkg/local/PKG/pth IF test -d /usr/opkg/local/PKG/pth/
--enable-batch
--enable-debug
--enable-pthread
--enable-maintainer
--enable-syscall-soft
--enable-syscall-hard
--with-dmalloc=/usr/opkg IF test -f /usr/opkg/bin/dmalloc
}