blob: 964bb9d93b56ecba4a7e0e5829901baf82a2807f (
plain) (
blame)
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
|
#include <stdio.h>
#include "debug.h"
#include "box64version.h"
#include "build_info.h"
#if defined(DYNAREC)
#define WITH_DYNAREC_STR " with Dynarec"
#else
#define WITH_DYNAREC_STR ""
#endif
#ifdef HAVE_TRACE
#define WITH_TRACE_STR " with trace"
#else
#define WITH_TRACE_STR ""
#endif
void PrintBox64Version(int prefix)
{
PrintfFtrace(prefix, BOX64_BUILD_INFO_STRING WITH_DYNAREC_STR WITH_TRACE_STR " built on %s %s\n",
__DATE__, __TIME__);
}
#undef WITH_TRACE
#undef WITH_DYNAREC
|