We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 623fc2e commit b182947Copy full SHA for b182947
2 files changed
build-scripts/djgpp-dxe-linker-wrapper.py
@@ -30,6 +30,8 @@ def parse_linker_args(args):
30
consumed = 1
31
elif arg.startswith("-O"):
32
33
+ elif arg in ("-shared", ):
34
+ consumed = 1
35
else:
36
unknown_args.append(arg)
37
include/SDL3/SDL_main_impl.h
@@ -154,9 +154,6 @@
154
*/
155
#define FOR_EACH_DXE_EXPORT(X) \
156
X(__Exit) \
157
- \
158
- X(___deregister_frame_info) \
159
160
X(___dj_huge_val) \
161
X(___dj_stderr) \
162
X(___dj_stdin) \
@@ -168,9 +165,6 @@
168
165
X(___dpmi_simulate_real_mode_procedure_retf) \
169
166
X(___fpclassifyd) \
170
167
X(___fpclassifyf) \
171
172
- X(___register_frame_info) \
173
174
X(__go32_dpmi_allocate_dos_memory) \
175
X(__go32_dpmi_chain_protected_mode_interrupt_vector) \
176
X(__go32_dpmi_free_dos_memory) \
0 commit comments