blob: 612a8871addf31ccb0aaa1a63be27731a041f0ec (
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)
{
printf_ftrace(prefix, BOX64_BUILD_INFO_STRING WITH_DYNAREC_STR WITH_TRACE_STR " built on %s %s\n",
__DATE__, __TIME__);
}
#undef WITH_TRACE
#undef WITH_DYNAREC
|