Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
flycast
Commits
b13e7612
Commit
b13e7612
authored
Dec 14, 2015
by
Libretro-Admin
Browse files
Add NO_THREADS switch
parent
e085e5e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/libretro/libretro.cpp
View file @
b13e7612
...
...
@@ -169,6 +169,7 @@ void retro_reset (void)
#if defined(GL) || defined(GLES)
static
void
context_reset
(
void
)
{
printf
(
"context_reset.
\n
"
);
rglgen_resolve_symbols
(
hw_render
.
get_proc_address
);
}
...
...
shell/libretro/Makefile
View file @
b13e7612
...
...
@@ -4,9 +4,10 @@ CC_AS ?= $(CC)
STRIP
=
${CC_PREFIX}
strip
LD
=
${CC}
DEBUG
:=
0
NO_REND
:=
1
HAVE_GL
:=
0
DEBUG
:=
0
NO_REND
:=
1
HAVE_GL
:=
0
NO_THREADS
:=
0
TARGET_NAME
:=
reicast
...
...
@@ -152,6 +153,12 @@ else
RZDCY_CFLAGS
+=
-DTARGET_LINUX_x86
endif
ifdef
NO_THREADS
RZDCY_CFLAGS
+=
-DTARGET_NO_THREADS
CFLAGS
+=
-DTARGET_NO_THREADS
CXXFLAGS
+=
-DTARGET_NO_THREADS
endif
ifdef
NO_REC
RZDCY_CFLAGS
+=
-DTARGET_NO_REC
endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment