Add some more consts to get data moved from .data to .rodata

We already had some `const`s but it was still not enough.

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2016-02-19 17:04:42 +01:00
parent d857fe095f
commit 866ef5bcf3
5 changed files with 13 additions and 13 deletions
+3 -3
View File
@@ -64,17 +64,17 @@ typedef enum
/**
* Jerry engine build date
*/
extern const char *jerry_build_date;
extern const char * const jerry_build_date;
/**
* Jerry engine build commit hash
*/
extern const char *jerry_commit_hash;
extern const char * const jerry_commit_hash;
/**
* Jerry engine build branch name
*/
extern const char *jerry_branch_name;
extern const char * const jerry_branch_name;
#ifdef JERRY_ENABLE_LOG
extern int jerry_debug_level;