diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-24 11:44:53 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-24 11:44:53 -0700 |
commit | e6e22495e277b0ae62d9732ff86ccfc2529b5706 (patch) | |
tree | 57c9f911ed3cbf8822a18eb321349e5ad7e38e06 /src/settings.js | |
parent | f4cff4862c66c24d5fd39f1bfdbcd129cb4da738 (diff) | |
parent | 9c52c8a191c553f9c44d25c733b7b4d88aa47bfd (diff) |
Merge pull request #1394 from inolen/stat_tests
added lchmod, new tests, fixed for mknod return values
Diffstat (limited to 'src/settings.js')
-rw-r--r-- | src/settings.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.js b/src/settings.js index b33ea7b3..b7460cf2 100644 --- a/src/settings.js +++ b/src/settings.js @@ -243,6 +243,8 @@ var FS_LOG = 0; // Log all FS operations. This is especially helpful when you'r // a new project and want to see a list of file system operations happening // so that you can create a virtual file system with all of the required files. +var USE_OLD_FS = 1; // Switch to toggle the new / old FS code. Currently only used for testing purposes. + var USE_BSS = 1; // https://en.wikipedia.org/wiki/.bss // When enabled, 0-initialized globals are sorted to the end of the globals list, // enabling us to not explicitly store the initialization value for each 0 byte. @@ -412,7 +414,6 @@ var DEBUG_TAGS_SHOWING = []; // metadata // legalizer - // A cached set of defines, generated from the header files. This // lets the emscripten libc (library.js) see the right values. // If you the headers or use different ones, you will need to override |