Check-in [6fe1f8ccea]
Overview
Comment:Remove possible OpenMP flag that conflicts with output
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6fe1f8ccea6609d87c04640b1a5bfb0435f0f785183df2455fcb382fb8201880
User & Date: rkeene on 2019-01-23 06:53:46
Other Links: manifest | tags
Context
2019-01-23
07:06
Hard code file extension for static targets to ".a" check-in: 92769ff244 user: rkeene tags: trunk
06:53
Remove possible OpenMP flag that conflicts with output check-in: 6fe1f8ccea user: rkeene tags: trunk
06:41
Support CryptGenRandom() on Windows check-in: 0037d24768 user: rkeene tags: trunk
Changes

Modified configure.ac from [ffea90f4d2] to [a80328f0ef].

98
99
100
101
102
103
104
105
106
107
108
109


110
111
112
113
114
115
116
117
98
99
100
101
102
103
104





105
106

107
108
109
110
111
112
113







-
-
-
-
-
+
+
-







tcl_nano_openmp=''
AX_CHECK_LINK_FLAG([-fopenmp], [
	tcl_nano_openmp='-fopenmp'
], [
	AX_CHECK_LINK_FLAG([-xopenmp], [
		tcl_nano_openmp='-xopenmp'
	], [
		AX_CHECK_LINK_FLAG([-openmp], [
			tcl_nano_openmp='-openmp'
		], [
			AX_CHECK_LINK_FLAG([/openmp], [
				tcl_nano_openmp='/openmp'
		AX_CHECK_LINK_FLAG([/openmp], [
			tcl_nano_openmp='/openmp'
			])
		])
	])
])

if test -n "${tcl_nano_openmp}"; then
	CFLAGS="$CFLAGS ${tcl_nano_openmp}"