Ça a compilé, même la nouvelle version (newton 3.13 compilé depuis les sources).
Avec la truculente ligne de commande suivante, j'ai pu compiler un fichier minimal (équivalent à tut00) placé dans le dossier build/gmake/examples/
,
| g++ -o test.bin -lNazaraSDK-d -lNazaraSDKServer-d -lNazaraCore-d -lNazaraAudio-d \
-lNazaraLua-d -lNazaraNetwork-d -lNazaraNoise-d -lNazaraPhysics-d \
-lNazaraUtility-d -lNazaraRenderer-d -lNazaraGraphics-d \
-L/usr/lib64/ -L../../../lib/ -L../../../extlibs/lib/common/x64/ \
-L../../../lib/gmake/x64/ -L../../../extlibs/lib/x64/ \
-I../../../include/ -I../../../extlibs/include/ -I../../../SDK/include/ \
test.cpp -std=c++14
|
Je n'ai pas cherché à être minimal dans la ligne de commande.
Édit : en cherchant à minimser la ligne, je tombe sur
| g++ -o test.bin -lNazaraSDK-d -lNazaraCore-d \
-lNazaraRenderer-d -lNazaraUtility-d \
-L../../../lib/gmake/x64/ \
-I../../../include/ -I../../../SDK/include/ \
test.cpp -std=c++14
|
Pour pouvoir exécuter le fichier test.bin ainsi créé, j'ai dû copier tout les .so de lib/gmake/x64/
dans le dossier courant. Je n'ai plus d'erreur de link, mais une jolie erreur, je crains que ce ne soit avec OpenGL,
Édit : avec la ligne de commande courte, j'ai une erreur un peu plus courte, mais similaire (et donc j’espère plus lisible) :
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 | Initialized: Core
Initialized: Lua module
Initialized: Noise module
Initialized: Physics module
Warning: Pixel format 0x21 (RGB32F) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x22 (RGB32I) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x23 (RGB32UI) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x29 (RGBA32F) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x2A (RGBA32I) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x2B (RGBA32UI) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Initialized: Utility module
OpenAL version: 1.1
Initialized: Audio module
OpenGL version: 3.3
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 1 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
Initialized: Renderer module
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 3 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 4 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 5 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 5 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) has been mapped in HOST memory.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 6 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 7 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 7 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) has been mapped in HOST memory.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0xa6e870
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 8 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
Initialized: Graphics module
Initialized: SDK
Uninitialized: Audio module
Uninitialized: Graphics module
Uninitialized: Renderer module
Uninitialized: Lua module
Uninitialized: Noise module
Uninitialized: Physics module
Uninitialized: Utility module
Uninitialized: Core
Uninitialized: SDK
|
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269 | Initialized: Core
Initialized: Lua module
Initialized: Noise module
Initialized: Physics module
Warning: Pixel format 0x21 (RGB32F) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x22 (RGB32I) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x23 (RGB32UI) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x29 (RGBA32F) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x2A (RGBA32I) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Warning: Pixel format 0x2B (RGBA32UI) failed validation tests (in static bool Nz::PixelFormat::Initialize() at ../../../src/Nazara/Utility/PixelFormat.cpp:1344)
Initialized: Utility module
OpenAL version: 1.1
Initialized: Audio module
OpenGL version: 3.3
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 1 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
Initialized: Renderer module
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 3 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 4 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 5 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 5 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) has been mapped in HOST memory.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 6 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 7 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 7 (bound to GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) has been mapped in HOST memory.
OpenGL debug message (ID: 0x20071):
Sent by context: 0x0x9aef10
-Source: OpenGL API
-Type: Other
-Severity: Unknown
Message: Buffer detailed info: Buffer object 8 (bound to GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the source for buffer object operations.
Initialized: Graphics module
Initialized: SDK
Uninitialized: Audio module
Uninitialized: Graphics module
Uninitialized: Renderer module
Uninitialized: Lua module
Uninitialized: Noise module
Uninitialized: Physics module
Uninitialized: Utility module
Uninitialized: Core
Uninitialized: SDK
*** Error in `./test.bin': double free or corruption (fasttop): 0x0000000000e802a0 ***
======= Backtrace: =========
/lib64/libc.so.6(+0x7275f)[0x7f4a06bf175f]
/lib64/libc.so.6(+0x77fce)[0x7f4a06bf6fce]
/lib64/libc.so.6(+0x78ce6)[0x7f4a06bf7ce6]
libNazaraSDK-d.so(_ZN9__gnu_cxx13new_allocatorIPNSt8__detail15_Hash_node_baseEE10deallocateEPS3_m+0x20)[0x7f4a099fb374]
libNazaraSDK-d.so(_ZNSt16allocator_traitsISaIPNSt8__detail15_Hash_node_baseEEE10deallocateERS3_PS2_m+0x2b)[0x7f4a099faea2]
libNazaraSDK-d.so(_ZNSt8__detail16_Hashtable_allocISaINS_10_Hash_nodeISt4pairIKmjELb0EEEEE21_M_deallocate_bucketsEPPNS_15_Hash_node_baseEm+0x5a)[0x7f4a099fa9b2]
libNazaraSDK-d.so(_ZNSt10_HashtableImSt4pairIKmjESaIS2_ENSt8__detail10_Select1stESt8equal_toImESt4hashImENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_deallocate_bucketsEPPNS4_15_Hash_node_baseEm+0x42)[0x7f4a099fa522]
libNazaraSDK-d.so(_ZNSt10_HashtableImSt4pairIKmjESaIS2_ENSt8__detail10_Select1stESt8equal_toImESt4hashImENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_deallocate_bucketsEv+0x2a)[0x7f4a099fa27e]
libNazaraSDK-d.so(_ZNSt10_HashtableImSt4pairIKmjESaIS2_ENSt8__detail10_Select1stESt8equal_toImESt4hashImENS4_18_Mod_range_hashingENS4_20_Default_ranged_hashENS4_20_Prime_rehash_policyENS4_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev+0x24)[0x7f4a099fa044]
libNazaraSDK-d.so(_ZNSt13unordered_mapImjSt4hashImESt8equal_toImESaISt4pairIKmjEEED2Ev+0x18)[0x7f4a099fb7f8]
/lib64/libc.so.6(__cxa_finalize+0x8f)[0x7f4a06bb6e9f]
libNazaraSDKServer-d.so(+0x1c15b3)[0x7f4a093cf5b3]
======= Memory map: ========
00400000-00404000 r-xp 00000000 08:06 15734043 /home/etienne/Bin/NazaraEngine/build/gmake/examples/test.bin
00603000-00604000 r--p 00003000 08:06 15734043 /home/etienne/Bin/NazaraEngine/build/gmake/examples/test.bin
00604000-00605000 rw-p 00004000 08:06 15734043 /home/etienne/Bin/NazaraEngine/build/gmake/examples/test.bin
008af000-00ea1000 rw-p 00000000 00:00 0 [heap]
7f49e8000000-7f49e8021000 rw-p 00000000 00:00 0
7f49e8021000-7f49ec000000 ---p 00000000 00:00 0
7f49eeffc000-7f49eeffd000 ---p 00000000 00:00 0
7f49eeffd000-7f49ef7fd000 rw-p 00000000 00:00 0
7f49ef7fd000-7f49ef7fe000 ---p 00000000 00:00 0
7f49ef7fe000-7f49efffe000 rw-p 00000000 00:00 0
7f49f8000000-7f49f8021000 rw-p 00000000 00:00 0
7f49f8021000-7f49fc000000 ---p 00000000 00:00 0
7f49fc494000-7f49fc495000 ---p 00000000 00:00 0
7f49fc495000-7f49fcc95000 rw-p 00000000 00:00 0
7f49fcc95000-7f49fcc96000 ---p 00000000 00:00 0
7f49fcc96000-7f49fd496000 rw-p 00000000 00:00 0
7f49fd496000-7f49fd516000 rw-s 34bd3000 00:06 10343 /dev/nvidiactl
7f49fd516000-7f49fd616000 rw-s a6917000 00:06 10343 /dev/nvidiactl
7f49fd616000-7f49fd6ca000 rw-s 131c1b000 00:06 10343 /dev/nvidiactl
7f49fdecb000-7f49fdecf000 r-xp 00000000 08:11 5778109 /usr/lib64/libgpg-error.so.0.11.0
7f49fdecf000-7f49fe0ce000 ---p 00004000 08:11 5778109 /usr/lib64/libgpg-error.so.0.11.0
7f49fe0ce000-7f49fe0cf000 r--p 00003000 08:11 5778109 /usr/lib64/libgpg-error.so.0.11.0
7f49fe0cf000-7f49fe0d0000 rw-p 00004000 08:11 5778109 /usr/lib64/libgpg-error.so.0.11.0
7f49fe0d0000-7f49fe0e4000 r-xp 00000000 08:11 7081539 /lib64/libresolv-2.19.so
7f49fe0e4000-7f49fe2e3000 ---p 00014000 08:11 7081539 /lib64/libresolv-2.19.so
7f49fe2e3000-7f49fe2e4000 r--p 00013000 08:11 7081539 /lib64/libresolv-2.19.so
7f49fe2e4000-7f49fe2e5000 rw-p 00014000 08:11 7081539 /lib64/libresolv-2.19.so
7f49fe2e5000-7f49fe2e7000 rw-p 00000000 00:00 0
7f49fe2e7000-7f49fe3c3000 r-xp 00000000 08:11 5769509 /usr/lib64/libgcrypt.so.20.0.1
7f49fe3c3000-7f49fe5c3000 ---p 000dc000 08:11 5769509 /usr/lib64/libgcrypt.so.20.0.1
7f49fe5c3000-7f49fe5c4000 r--p 000dc000 08:11 5769509 /usr/lib64/libgcrypt.so.20.0.1
7f49fe5c4000-7f49fe5cd000 rw-p 000dd000 08:11 5769509 /usr/lib64/libgcrypt.so.20.0.1
7f49fe5cd000-7f49fe5f2000 r-xp 00000000 08:11 5777796 /usr/lib64/liblzma.so.5.0.5
7f49fe5f2000-7f49fe7f1000 ---p 00025000 08:11 5777796 /usr/lib64/liblzma.so.5.0.5
7f49fe7f1000-7f49fe7f2000 r--p 00024000 08:11 5777796 /usr/lib64/liblzma.so.5.0.5
7f49fe7f2000-7f49fe7f3000 rw-p 00025000 08:11 5777796 /usr/lib64/liblzma.so.5.0.5
7f49fe7f3000-7f49fe81a000 r-xp 00000000 08:11 5776677 /usr/lib64/libsystemd.so.0.0.1
7f49fe81a000-7f49fea1a000 ---p 00027000 08:11 5776677 /usr/lib64/libsystemd.so.0.0.1
7f49fea1a000-7f49fea1b000 r--p 00027000 08:11 5776677 /usr/lib64/libsystemd.so.0.0.1
7f49fea1b000-7f49fea1c000 rw-p 00028000 08:11 5776677 /usr/lib64/libsystemd.so.0.0.1
7f49fea1c000-7f49fea62000 r-xp 00000000 08:11 7081725 /lib64/libdbus-1.so.3.8.11
7f49fea62000-7f49fec61000 ---p 00046000 08:11 7081725 /lib64/libdbus-1.so.3.8.11
7f49fec61000-7f49fec62000 r--p 00045000 08:11 7081725 /lib64/libdbus-1.so.3.8.11
7f49fec62000-7f49fec63000 rw-p 00046000 08:11 7081725 /lib64/libdbus-1.so.3.8.11
7f49fec63000-7f49fec6d000 r-xp 00000000 08:11 5777974 /usr/lib64/libjson-c.so.2.0.1
7f49fec6d000-7f49fee6c000 ---p 0000a000 08:11 5777974 /usr/lib64/libjson-c.so.2.0.1
7f49fee6c000-7f49fee6d000 r--p 00009000 08:11 5777974 /usr/lib64/libjson-c.so.2.0.1
7f49fee6d000-7f49fee6e000 rw-p 0000a000 08:11 5777974 /usr/lib64/libjson-c.so.2.0.1
7f49fee6e000-7f49feee6000 r-xp 00000000 08:11 5786887 /usr/lib64/pulseaudio/libpulsecommon-7.0.so
7f49feee6000-7f49ff0e6000 ---p 00078000 08:11 5786887 /usr/lib64/pulseaudio/libpulsecommon-7.0.so
7f49ff0e6000-7f49ff0e7000 r--p 00078000 08:11 5786887 /usr/lib64/pulseaudio/libpulsecommon-7.0.so
7f49ff0e7000-7f49ff0e9000 rw-p 00079000 08:11 5786887 /usr/lib64/pulseaudio/libpulsecommon-7.0.so
7f49ff0e9000-7f49ff134000 r-xp 00000000 08:11 5778290 /usr/lib64/libpulse.so.0.18.2
7f49ff134000-7f49ff334000 ---p 0004b000 08:11 5778290 /usr/lib64/libpulse.so.0.18.2
7f49ff334000-7f49ff335000 r--p 0004b000 08:11 5778290 /usr/lib64/libpulse.so.0.18.2
7f49ff335000-7f49ff336000 rw-p 0004c000 08:11 5778290 /usr/lib64/libpulse.so.0.18.2
7f49ff336000-7f49ff33d000 r-xp 00000000 08:11 7081548 /lib64/librt-2.19.so
7f49ff33d000-7f49ff53c000 ---p 00007000 08:11 7081548 /lib64/librt-2.19.so
7f49ff53c000-7f49ff53d000 r--p 00006000 08:11 7081548 /lib64/librt-2.19.so
7f49ff53d000-7f49ff53e000 rw-p 00007000 08:11 7081548 /lib64/librt-2.19.so
7f49ff7a9000-7f49ff7ae000 r-xp 00000000 08:11 5780983 /usr/lib64/libxcb-util.so.1.0.0
7f49ff7ae000-7f49ff9ad000 ---p 00005000 08:11 5780983 /usr/lib64/libxcb-util.so.1.0.0
7f49ff9ad000-7f49ff9ae000 r--p 00004000 08:11 5780983 /usr/lib64/libxcb-util.so.1.0.0
7f49ff9ae000-7f49ff9af000 rw-p 00005000 08:11 5780983 /usr/lib64/libxcb-util.so.1.0.0
7f49ff9af000-7f49ff9b1000 r-xp 00000000 08:11 5783593 /usr/lib64/libxcb-shm.so.0.0.0
7f49ff9b1000-7f49ffbb0000 ---p 00002000 08:11 5783593 /usr/lib64/libxcb-shm.so.0.0.0
7f49ffbb0000-7f49ffbb1000 r--p 00001000 08:11 5783593 /usr/lib64/libxcb-shm.so.0.0.0
7f49ffbb1000-7f49ffbb2000 rw-p 00002000 08:11 5783593 /usr/lib64/libxcb-shm.so.0.0.0
7f49ffbb2000-7f49ffbde000 r-xp 00000000 08:11 5779008 /usr/lib64/libvorbis.so.0.4.6
7f49ffbde000-7f49ffdde000 ---p 0002c000 08:11 5779008 /usr/lib64/libvorbis.so.0.4.6
7f49ffdde000-7f49ffddf000 r--p 0002c000 08:11 5779008 /usr/lib64/libvorbis.so.0.4.6
7f49ffddf000-7f49ffde0000 rw-p 0002d000 08:11 5779008 /usr/lib64/libvorbis.so.0.4.6
7f49ffde0000-7f49ffde6000 r-xp 00000000 08:11 5777268 /usr/lib64/libogg.so.0.8.0
7f49ffde6000-7f49fffe5000 ---p 00006000 08:11 5777268 /usr/lib64/libogg.so.0.8.0
7f49fffe5000-7f49fffe6000 r--p 00005000 08:11 5777268 /usr/lib64/libogg.so.0.8.0
7f49fffe6000-7f49fffe7000 rw-p 00006000 08:11 5777268 /usr/lib64/libogg.so.0.8.0
7f49fffe7000-7f4a001b0000 r-xp 00000000 08:11 7080377 /lib64/libcrypto.so.1.0.0
7f4a001b0000-7f4a003b0000 ---p 001c9000 08:11 7080377 /lib64/libcrypto.so.1.0.0
7f4a003b0000-7f4a003ca000 r--p 001c9000 08:11 7080377 /lib64/libcrypto.so.1.0.0
7f4a003ca000-7f4a003d7000 rw-p 001e3000 08:11 7080377 /lib64/libcrypto.so.1.0.0
7f4a003d7000-7f4a003db000 rw-p 00000000 00:00 0
7f4a003db000-7f4a003ec000 r-xp 00000000 08:11 5778217 /usr/lib64/libXext.so.6.4.0
7f4a003ec000-7f4a005eb000 ---p 00011000 08:11 5778217 /usr/lib64/libXext.so.6.4.0
7f4a005eb000-7f4a005ec000 r--p 00010000 08:11 5778217 /usr/lib64/libXext.so.6.4.0
7f4a005ec000-7f4a005ed000 rw-p 00011000 08:11 5778217 /usr/lib64/libXext.so.6.4.0
7f4a005ed000-7f4a01faf000 r-xp 00000000 08:11 5769477 /usr/lib64/libnvidia-glcore.so.340.96
7f4a01faf000-7f4a01fcd000 rwxp 019c2000 08:11 5769477 /usr/lib64/libnvidia-glcore.so.340.96
7f4a01fcd000-7f4a0244b000 r-xp 019e0000 08:11 5769477 /usr/lib64/libnvidia-glcore.so.340.96
7f4a0244b000-7f4a0264a000 ---p 01e5e000 08:11 5769477 /usr/lib64/libnvidia-glcore.so.340.96
7f4a0264a000-7f4a031e4000 rw-p 01e5d000 08:11 5769477 /usr/lib64/libnvidia-glcore.so.340.96
7f4a031e4000-7f4a03201000 rw-p 00000000 00:00 0
7f4a03201000-7f4a03204000 r-xp 00000000 08:11 6170269 /usr/lib64/tls/libnvidia-tls.so.340.96
7f4a03204000-7f4a03403000 ---p 00003000 08:11 6170269 /usr/lib64/tls/libnvidia-tls.so.340.96
7f4a03403000-7f4a03404000 rw-p 00002000 08:11 6170269 /usr/lib64/tls/libnvidia-tls.so.340.96
7f4a03404000-7f4a03408000 r-xp 00000000 08:11 5780239 /usr/lib64/libxcb-image.so.0.0.0
7f4a03408000-7f4a03607000 ---p 00004000 08:11 5780239 /usr/lib64/libxcb-image.so.0.0.0
7f4a03607000-7f4a03608000 r--p 00003000 08:11 5780239 /usr/lib64/libxcb-image.so.0.0.0
7f4a03608000-7f4a03609000 rw-p 00004000 08:11 5780239 /usr/lib64/libxcb-image.so.0.0.0
7f4a03609000-7f4a03611000 r-xp 00000000 08:11 5781247 /usr/lib64/libxcb-render.so.0.0.0
7f4a03611000-7f4a03811000 ---p 00008000 08:11 5781247 /usr/lib64/libxcb-render.so.0.0.0
7f4a03811000-7f4a03812000 r--p 00008000 08:11 5781247 /usr/lib64/libxcb-render.so.0.0.0
7f4a03812000-7f4a03813000 rw-p 00009000 08:11 5781247 /usr/lib64/libxcb-render.so.0.0.0
7f4a03813000-7f4a03816000 r-xp 00000000 08:11 5778685 /usr/lib64/libxcb-render-util.so.0.0.0
7f4a03816000-7f4a03a15000 ---p 00003000 08:11 5778685 /usr/lib64/libxcb-render-util.so.0.0.0
7f4a03a15000-7f4a03a16000 r--p 00002000 08:11 5778685 /usr/lib64/libxcb-render-util.so.0.0.0
7f4a03a16000-7f4a03a17000 rw-p 00003000 08:11 5778685 /usr/lib64/libxcb-render-util.so.0.0.0
7f4a03a17000-7f4a03a1a000 r-xp 00000000 08:11 5777923 /usr/lib64/libXau.so.6.0.0
7f4a03a1a000-7f4a03c19000 ---p 00003000 08:11 5777923 /usr/lib64/libXau.so.6.0.0
7f4a03c19000-7f4a03c1a000 r--p 00002000 08:11 5777923 /usr/lib64/libXau.so.6.0.0
7f4a03c1a000-7f4a03c1b000 rw-p 00003000 08:11 5777923 /usr/lib64/libXau.so.6.0.0
7f4a03c1b000-7f4a03c57000 r-xp 00000000 08:11 5777052 /usr/lib64/libpng16.so.16.8.0
7f4a03c57000-7f4a03e56000 ---p 0003c000 08:11 5777052 /usr/lib64/libpng16.so.16.8.0
7f4a03e56000-7f4a03e57000 r--p 0003b000 08:11 5777052 /usr/lib64/libpng16.so.16.8.0
7f4a03e57000-7f4a03e58000 rw-p 0003c000 08:11 5777052 /usr/lib64/libpng16.so.16.8.0
7f4a03e58000-7f4a03e66000 r-xp 00000000 08:11 5781768 /usr/lib64/libbz2.so.1.0.6
7f4a03e66000-7f4a04065000 ---p 0000e000 08:11 5781768 /usr/lib64/libbz2.so.1.0.6
7f4a04065000-7f4a04066000 r--p 0000d000 08:11 5781768 /usr/lib64/libbz2.so.1.0.6
7f4a04066000-7f4a04067000 rw-p 0000e000 08:11 5781768 /usr/lib64/libbz2.so.1.0.6
7f4a04067000-7f4a0407c000 r-xp 00000000 08:11 7080267 /lib64/libz.so.1.2.8
7f4a0407c000-7f4a0427b000 ---p 00015000 08:11 7080267 /lib64/libz.so.1.2.8
7f4a0427b000-7f4a0427c000 r--p 00014000 08:11 7080267 /lib64/libz.so.1.2.8
7f4a0427c000-7f4a0427d000 rw-p 00015000 08:11 7080267 /lib64/libz.so.1.2.8
7f4a0427d000-7f4a04294000 r-xp 00000000 08:11 5773528 /usr/lib64/libspeex.so.1.5.0
7f4a04294000-7f4a04494000 ---p 00017000 08:11 5773528 /usr/lib64/libspeex.so.1.5.0
7f4a04494000-7f4a04495000 r--p 00017000 08:11 5773528 /usr/lib64/libspeex.so.1.5.0
7f4a04495000-7f4a04496000 rw-p 00018000 08:11 5773528 /usr/lib64/libspeex.so.1.5.0
7f4a04496000-7f4a04749000 r-xp 00000000 08:11 5778303 /usr/lib64/libvorbisenc.so.2.0.9
7f4a04749000-7f4a04948000 ---p 002b3000 08:11 5778303 /usr/lib64/libvorbisenc.so.2.0.9
7f4a04948000-7f4a04964000 r--p 002b2000 08:11 5778303 /usr/lib64/libvorbisenc.so.2.0.9
7f4a04964000-7f4a04965000 rw-p 002ce000 08:11 5778303 /usr/lib64/libvorbisenc.so.2.0.9
7f4a04965000-7f4a049a2000 r-xp 00000000 08:11 5780036 /usr/lib64/libFLAC.so.8.3.0
7f4a049a2000-7f4a04ba2000 ---p 0003d000 08:11 5780036 /usr/lib64/libFLAC.so.8.3.0
7f4a04ba2000-7f4a04ba3000 r--p 0003d000 08:11 5780036 /usr/lib64/libFLAC.so.8.3.0
7f4a04ba3000-7f4a04ba4000 rw-p 0003e000 08:11 5780036 /usr/lib64/libFLAC.so.8.3.0
7f4a04ba4000-7f4a04c6b000 r-xp 00000000 08:11 6422813 /usr/X11R6/lib64/libGL.so.340.96
7f4a04c6b000-7f4a04c9a000 rwxp 000c7000 08:11 6422813 /usr/X11R6/lib64/libGL.so.340.96
7f4a04c9a000-7f4a04cb6000 r-xp 000f6000 08:11 6422813 /usr/X11R6/lib64/libGL.so.340.96
7f4a04cb6000-7f4a04eb5000 ---p 00112000 08:11 6422813 /usr/X11R6/lib64/libGL.so.340.96
7f4a04eb5000-7f4a04eda000 rw-p 00111000 08:11 6422813 /usr/X11R6/lib64/libGL.so.340.96
7f4a04eda000-7f4a04ef0000 rw-p 00000000 00:00 0
7f4a04ef0000-7f4a04efc000 r-xp 00000000 08:11 5781308 /usr/lib64/libxcb-randr.so.0.1.0
7f4a04efc000-7f4a050fc000 ---p 0000c000 08:11 5781308 /usr/lib64/libxcb-randr.so.0.1.0
7f4a050fc000-7f4a050fd000 r--p 0000c000 08:11 5781308 /usr/lib64/libxcb-randr.so.0.1.0
7f4a050fd000-7f4a050fe000 rw-p 0000d000 08:11 5781308 /usr/lib64/libxcb-randr.so.0.1.0
7f4a050fe000-7f4a05100000 r-xp 00000000 08:11 5781331 /usr/lib64/libxcb-keysyms.so.1.0.0
7f4a05100000-7f4a052ff000 ---p 00002000 08:11 5781331 /usr/lib64/libxcb-keysyms.so.1.0.0
7f4a052ff000-7f4a05300000 r--p 00001000 08:11 5781331 /usr/lib64/libxcb-keysyms.so.1.0.0
7f4a05300000-7f4a05301000 rw-p 00002000 08:11 5781331 /usr/lib64/libxcb-keysyms.so.1.0.0
7f4a05301000-7f4a05305000 r-xp 00000000 08:11 5778083 /usr/lib64/libxcb-icccm.so.4.0.0
7f4a05305000-7f4a05505000 ---p 00004000 08:11 5778083 /usr/lib64/libxcb-icccm.so.4.0.0
7f4a05505000-7f4a05506000 r--p 00004000 08:11 5778083 /usr/lib64/libxcb-icccm.so.4.0.0
7f4a05506000-7f4a05507000 rw-p 00005000 08:11 5778083 /usr/lib64/libxcb-icccm.so.4.0.0
7f4a05507000-7f4a05513000 r-xp 00000000 08:11 5786959 /usr/lib64/libxcb-ewmh.so.2.0.0
7f4a05513000-7f4a05712000 ---p 0000c000 08:11 5786959 /usr/lib64/libxcb-ewmh.so.2.0.0
7f4a05712000-7f4a05713000 r--p 0000b000 08:11 5786959 /usr/lib64/libxcb-ewmh.so.2.0.0
7f4a05713000-7f4a05714000 rw-p 0000c000 08:11 5786959 /usr/lib64/libxcb-ewmh.so.2.0.0
7f4a05714000-7f4a05719000 r-xp 00000000 08:11 5783885 /usr/lib64/libxcb-cursor.so.0.0.0
7f4a05719000-7f4a05918000 ---p 00005000 08:11 5783885 /usr/lib64/libxcb-cursor.so.0.0.0
7f4a05918000-7f4a05919000 r--p 00004000 08:11 5783885 /usr/lib64/libxcb-cursor.so.0.0.0
7f4a05919000-7f4a0591a000 rw-p 00005000 08:11 5783885 /usr/lib64/libxcb-cursor.so.0.0.0
7f4a0591a000-7f4a05939000 r-xp 00000000 08:11 5780142 /usr/lib64/libxcb.so.1.1.0
7f4a05939000-7f4a05b38000 ---p 0001f000 08:11 5780142 /usr/lib64/libxcb.so.1.1.0
7f4a05b38000-7f4a05b39000 r--p 0001e000 08:11 5780142 /usr/lib64/libxcb.so.1.1.0
7f4a05b39000-7f4a05b3a000 rw-p 0001f000 08:11 5780142 /usr/lib64/libxcb.so.1.1.0
7f4a05b3a000-7f4a05c72000 r-xp 00000000 08:11 5784401 /usr/lib64/libX11.so.6.3.0[1] 5760 abort ./test.bin
|
Ma carte graphique est une GeForce 210 (pilote nvidia propriétaires). Si tu crains que ce ne soit dû à une carte graphique trop vieille, je peux tester avec une un peu plus récente (parce que tu parles de Vulkan et tout plein de trucs fun et récent, mais j'ignore le support des PC un peu ancien — sisi, c'est mon ordi principal, et il fait ce que je lui demande 99 % du temps).