mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
4b9358928b
Move all the version strings to a single compilation unit, ver.c; this does not include the version macros, which are fed into macros.c. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
19 lines
402 B
C
19 lines
402 B
C
#include "nasm.h"
|
|
#include "version.h"
|
|
|
|
/* This is printed when entering nasm -v */
|
|
const char nasm_version[] = NASM_VER;
|
|
const char nasm_date[] = __DATE__;
|
|
const char nasm_compile_options[] = ""
|
|
#ifdef DEBUG
|
|
" with -DDEBUG"
|
|
#endif
|
|
;
|
|
|
|
/* These are used by some backends. */
|
|
const char nasm_comment[] =
|
|
"The Netwide Assembler " NASM_VER;
|
|
|
|
const char nasm_signature[] =
|
|
"NASM " NASM_VER;
|