diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-19 12:18:43 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-19 12:18:43 -0700 |
commit | 5bbd07d73bff8e8d3a63b35358ed19bbc80234bc (patch) | |
tree | defd02427555d638e8d0f9e93c358a1cd204344e /src/settings.js | |
parent | cc8297b311c8deaf6bf991796f93b3177ff94cd1 (diff) | |
parent | f6416d822bd5178065272877505de4428b4aee2a (diff) |
Merge pull request #1528 from inolen/shared_lib_fixes
re-enabled non-asm.js shared lib support
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 8757f7b9..cb64bfd9 100644 --- a/src/settings.js +++ b/src/settings.js @@ -315,11 +315,12 @@ var SIDE_MODULE = 0; // Corresponds to MAIN_MODULE var BUILD_AS_SHARED_LIB = 0; // Whether to build the code as a shared library // 0 here means this is not a shared lib: It is a main file. - // All shared library options (1 and 2) are currently deprecated XXX // 1 means this is a normal shared lib, load it with dlopen() // 2 means this is a shared lib that will be linked at runtime, // which means it will insert its functions into // the global namespace. See STATIC_LIBS_TO_LOAD. + // + // Value 2 is currently deprecated. var RUNTIME_LINKED_LIBS = []; // If this is a main file (BUILD_AS_SHARED_LIB == 0), then // we will link these at runtime. They must have been built with // BUILD_AS_SHARED_LIB == 2. |