summaryrefslogtreecommitdiff
path: root/configure
blob: 47be6631e8e5de95a95133e9f8f4b733116356a5 (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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#!/bin/sh

set -e

CONFIGDIR="$(dirname $0)/mk"

show_help() {
	cat <<-EOF
	usage: ./configure [options...]

	Options:
	   -d		Enable debugging symbols and asserts

	   -I dir	Set the directory to use for #include files

	   -a arch	Choose the underlying architecture to build for:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/architecture.conf)

	   -c version	Conform to:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/c.conf)

	   -p version	Conform to:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/posix.conf)

	   -w wordsize	Choose a word size for the architecuture:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/wordsize.conf)

	   -x version	Conform to:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/xopen.conf)

	   -X number	Enable C Extension:
	$(awk '{ printf("\t%s\n", $0); }' ${CONFIGDIR}/cext.conf)

	EOF
}

validate_option() {
	option="${CONFIGDIR}/$1.conf"

	for opt in $(awk '/^[0-9]/ { print $1 }' "${option}"); do
		if [ "$2" = "${opt}" ]; then
			echo "$2"
			return 0
		fi
	done

	printf 'Invalid option '%s'. Valid options are:\n' "$2" >&2
	cat "${option}" >&2
	exit 1
}

option=

architecture=x86
wordsize=64
debug=0
include=

standard_c=
posix=
xopen=
cext=

while getopts dhc:p:x:I:X: option; do
	case ${option} in
	a)	architecture=$(validate_option architecture ${OPTARG})	;;
	c)	standard_c=$(validate_option c ${OPTARG})		;;
	p)	posix=$(validate_option posix ${OPTARG})		;;
	w)	wordsize=$(validate_option wordsize ${OPTARG})		;;
	x)	xopen=$(validate_option xopen ${OPTARG})		;;
	X)	cext=$(validate_option cext ${OPTARG})			;;
	I)	include=${OPTARG}					;;
	d)	debug=1 ;;

	h)	show_help
		exit 0
		;;

	?)	printf 'Unknown option "%c". Try "-h" for help.\n' $option
		exit 1
		;;
	esac
done

if [ -z "${standard_c}" ] && [ -z "${posix}" ] && [ -z "${xopen}" ]; then
	xopen=700
fi

if [ -n "${posix}" ] && [ -n "${xopen}" ]; then
	printf 'Specify only one of "-x" or "-p".\n'
	exit 1
fi

if [ -n "${xopen}" ]; then
	if [ $xopen -eq 700 ]; then
		posix=200809
	elif [ $xopen -eq 600 ]; then
		posix=200112
	elif [ $xopen -eq 500 ]; then
		posix=199506
	else
		posix=2
	fi
fi

if [ -z "${standard_c}" ] && [ -n "${posix}" ]; then
	if [ $posix -ge 200112 ]; then
		standard_c=199901
	else
		standard_c=1
	fi
fi

if [ ${posix:-0} -ge 200112 ] && [ $standard_c -lt 199901 ]; then
	printf 'POSIX.1-2001 and newer require C99 or newer.\n'
	exit 1
fi

if [ -n "${cext}" ] && [ ${standard_c:-1} -lt 201112 ]; then
	printf 'C Extension 1 requires at least C11.\n'
	exit 1
fi

printf 'Building C library for %d-bit %s conforming to:\n' "${wordsize}" "${architecture}"
printf 'ISO C:  %d' ${standard_c}
test -n "${cext}"  && printf ' (Extensions: %s)' ${cext}
printf '\n'
test -n "${posix}" && printf 'POSIX:  %d\n' ${posix}
test -n "${xopen}" && printf 'X/OPEN: %d\n' ${xopen}

cat <<-EOF > .config.mk
	.POSIX:

	ARCHITECTURE=${architecture}
	WORDSIZE=${wordsize}
	TOPDIR=$(dirname $0)
	SRCDIR=\$(TOPDIR)/src
	INCDIR=${include}
	OBJDIR=./obj

EOF

if [ ${standard_c:-1} -lt 199901 ]; then
	printf 'CC=c89\n' >> .config.mk
else
	printf 'CC=c%02d\n' $(( (standard_c / 100) % 100 )) >> .config.mk
fi

CFLAGS="${CFLAGS}"

if [ $debug -eq 1 ]; then
	CFLAGS="${CFLAGS} -g"
else
	CFLAGS="${CFLAGS} -DNDEBUG"
fi

if [ -n "${xopen}" ]; then
	if [ $xopen -eq 400 ]; then
		CFLAGS="${CFLAGS} -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1"
	else
		CFLAGS="${CFLAGS} -D_XOPEN_SOURCE=${xopen}"
	fi
elif [ -n "${posix}" ]; then
	CFLAGS="${CFLAGS} -D_POSIX_C_SOURCE=${posix}"
fi

printf 'CFLAGS=$(BASE_CFLAGS) %s\n\n' "${CFLAGS}" >> .config.mk

#
# TODO: C extentsion
#
for lib in $(cat $(dirname $0)/mk/*.d | grep 'lib.*_[CPX]\.' | cut -d: -f1 | sort -u); do
	ver=$(echo $lib | cut -d. -f2)
	if (echo $lib | grep -q _C) && [ "$ver" -le ${standard_c:-1} ]; then
		printf 'all: %s\n' $lib >> .config.mk
	elif (echo $lib | grep -q _P) && [ "$ver" -le ${posix:-0} ]; then
		printf 'all: %s\n' $lib >> .config.mk
	elif (echo $lib | grep -q _X) && [ "$ver" -le ${xopen:-0} ]; then
		printf 'all: %s\n' $lib >> .config.mk
	fi
done

### generate main Makefile
if ! [ -f Makefile ]; then
	cp "$(dirname $0)/Makefile" .
fi