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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
|
diff -rupN afnix-src-3.8.0/cnf/bin/afnix-vcomp afnix-src-3.8.0b/cnf/bin/afnix-vcomp
--- afnix-src-3.8.0/cnf/bin/afnix-vcomp 2023-01-13 17:44:45.000000000 -0500
+++ afnix-src-3.8.0b/cnf/bin/afnix-vcomp 2023-05-03 22:06:13.334413599 -0400
@@ -118,6 +118,7 @@ getccm () {
10*) ccvers=10 ;;
11*) ccvers=11 ;;
12*) ccvers=12 ;;
+ 13*) ccvers=13 ;;
esac
fi
# check for g++ version
@@ -132,6 +133,7 @@ getccm () {
10*) ccvers=10 ;;
11*) ccvers=11 ;;
12*) ccvers=12 ;;
+ 13*) ccvers=13 ;;
esac
fi
# check for clang version
diff -rupN afnix-src-3.8.0/cnf/mak/afnix-gc13.mak afnix-src-3.8.0b/cnf/mak/afnix-gc13.mak
--- afnix-src-3.8.0/cnf/mak/afnix-gc13.mak 1969-12-31 19:00:00.000000000 -0500
+++ afnix-src-3.8.0b/cnf/mak/afnix-gc13.mak 2023-05-03 22:07:49.348035381 -0400
@@ -0,0 +1,177 @@
+# ----------------------------------------------------------------------------
+# - afnix-gcc12 -
+# - afnix compiler configuration - gcc configuration -
+# ----------------------------------------------------------------------------
+# - This program is free software; you can redistribute it and/or modify -
+# - it provided that this copyright notice is kept intact. -
+# - -
+# - This program 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. In not event shall -
+# - the copyright holder be liable for any direct, indirect, incidental or -
+# - special damages arising in any way out of the use of this software. -
+# ----------------------------------------------------------------------------
+# - author (c) 1999-2023 amaury darsch -
+# - author (c) 2011-2013 pino toscano hurd platform -
+# - author (c) 2016-2016 martin michlmayr GCC 05 -
+# - author (c) 2016-2017 amaury darsch GCC 06 -
+# - author (c) 2017-2017 nobuhiro iwamatsu GCC 07 -
+# - author (c) 2018-2018 nobuhiro iwamatsu GCC 08 -
+# - author (c) 2022-2022 nobuhiro iwamatsu GCC 12 -
+# - author (c) 2019-2023 amaury darsch GCC 09/10/11/12 -
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# - compiler and linker section -
+# ----------------------------------------------------------------------------
+
+C = gcc
+CN = g++
+CC = g++
+LD = g++
+LK = g++
+AR = ar
+RANLIB = ranlib
+STDEVFLAGS =
+STDCCFLAGS = -Wall -Werror -fno-builtin -Wno-error=overloaded-virtual
+STACCFLAGS =
+DYNCCFLAGS = -fPIC
+PLTCCFLAGS =
+DEBUGFLAGS = -g
+OPTCCFLAGS = -O2
+PFLCCFLAGS = -g -pg
+COVCCFLAGS = -g -fprofile-arcs -ftest-coverage
+CPPCCFLAGS = -nostdinc -nostdinc++
+CXXCCFLAGS =
+STDDEFINES =
+DBGDEFINES = -DAFNIX_DEBUG
+OPTDEFINES =
+PFLDEFINES = -DAFNIX_DEBUG -DAFNIX_PROFILED
+STDINCLUDE =
+AFXCPPTYPE = GNU
+AFXCPPVERS = 13
+
+# ----------------------------------------------------------------------------
+# - compiler dependant libraries -
+# ----------------------------------------------------------------------------
+
+# adjust for linux platform
+ifeq ($(PLATNAME),linux)
+PLTCCFLAGS = -MMD -pthread
+ifeq ($(OPENMP),yes)
+PLTCCFLAGS += -fopenmp
+endif
+endif
+
+# adjust for freebsd platform
+ifeq ($(PLATNAME),freebsd)
+PLTDEFINES = -MMD -D_REENTRANT
+endif
+
+# adjust for gnu/freebsd platform
+ifeq ($(PLATNAME),gnukbsd)
+PLTDEFINES = -MMD -D_REENTRANT
+ifeq ($(OPENMP),yes)
+PLTCCFLAGS += -fopenmp
+endif
+endif
+
+# adjust for gnu platform
+ifeq ($(PLATNAME),gnu)
+PLTDEFINES = -MMD -D_REENTRANT
+ifeq ($(OPENMP),yes)
+PLTCCFLAGS += -fopenmp
+endif
+endif
+
+# ----------------------------------------------------------------------------
+# - platform dependant linking flags -
+# ----------------------------------------------------------------------------
+
+# adjust for linux platform
+ifeq ($(PLATNAME),linux)
+ARFLAGS = rc
+LDFLAGS = -shared -pthread
+ifeq ($(LKMODE),soname)
+LDFLAGS += -Wl,-soname,$(SOMAJ)
+endif
+ifeq ($(OPENMP),yes)
+LDFLAGS += -fopenmp
+endif
+AFXCPPLIBS =
+endif
+
+# adjust for freebsd platform
+ifeq ($(PLATNAME),freebsd)
+ARFLAGS = rc
+LDFLAGS = -shared
+ifeq ($(LKMODE),soname)
+LDFLAGS += -Wl,-soname,$(SOMAJ)
+endif
+AFXCPPLIBS =
+endif
+
+# adjust for gnu/freebsd platform
+ifeq ($(PLATNAME),gnukbsd)
+ARFLAGS = rc
+LDFLAGS = -shared
+ifeq ($(LKMODE),soname)
+LDFLAGS += -Wl,-soname,$(SOMAJ)
+endif
+AFXCPPLIBS =
+endif
+
+# adjust for gnu platform
+ifeq ($(PLATNAME),gnu)
+ARFLAGS = rc
+LDFLAGS = -shared
+ifeq ($(LKMODE),soname)
+LDFLAGS += -Wl,-soname,$(SOMAJ)
+endif
+AFXCPPLIBS =
+endif
+
+# ----------------------------------------------------------------------------
+# - platform dependant final executable flags -
+# ----------------------------------------------------------------------------
+
+LKFLAGS =
+
+# adjust linker flags for linux
+ifeq ($(PLATNAME),linux)
+LKFLAGS = -pthread
+endif
+
+# adjust linker flags for freebsd
+ifeq ($(PLATNAME),freebsd)
+LKFLAGS = -pthread
+endif
+
+# ----------------------------------------------------------------------------
+# - target dependant final executable flags -
+# ----------------------------------------------------------------------------
+
+# adjust extra flag for profiled code
+ifeq ($(CCMODE),profiled)
+LKFLAGS += -pg
+endif
+
+# adjust platform flag for static or dynamic
+ifeq ($(LKTYPE),dynamic)
+PLTCCFLAGS += $(DYNCCFLAGS)
+endif
+ifeq ($(LKTYPE),static)
+PLTCCFLAGS += $(STACCFLAGS)
+endif
+
+# ----------------------------------------------------------------------------
+# - package dependant flags -
+# ----------------------------------------------------------------------------
+
+ifeq ($(PKGNAM),deb)
+OPTCCFLAGS += -g
+endif
+
+ifeq ($(PKGNAM),rpm)
+OPTCCFLAGS += -g
+endif
|