Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
oai
openairinterface5G
Commits
2d10951a
Commit
2d10951a
authored
Mar 18, 2016
by
Cédric Roux
Browse files
introduce T_TRACER to globally enable/disable the T
parent
9f0789e0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
2d10951a
CC
=
gcc
CFLAGS
=
-Wall
-g
-pthread
CFLAGS
=
-Wall
-g
-pthread
-DT_TRACER
#comment those two lines to NOT use shared memory
CFLAGS
+=
-DT_USE_SHARED_MEMORY
...
...
T.h
View file @
2d10951a
#ifndef _T_T_T_
#define _T_T_T_
#if T_TRACER
#include
<stdint.h>
#include
"T_defs.h"
...
...
@@ -517,4 +519,11 @@ extern int *T_active;
void
T_connect_to_tracer
(
char
*
addr
,
int
port
);
#else
/* T_TRACER */
/* if T_TRACER is not defined or is 0, the T is deactivated */
#define T(...)
/**/
#endif
/* T_TRACER */
#endif
/* _T_T_T_ */
tracer/Makefile
View file @
2d10951a
CC
=
gcc
CFLAGS
=
-Wall
-g
-pthread
CFLAGS
=
-Wall
-g
-pthread
-DT_TRACER
CFLAGS
+=
-O3
-ffast-math
-fomit-frame-pointer
#
CFLAGS += -O3 -ffast-math -fomit-frame-pointer
LIBS
=
-lX11
-lm
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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