Index: native_client_sdk/src/libraries/nacl_mounts/library.dsc |
diff --git a/native_client_sdk/src/libraries/nacl_mounts/library.dsc b/native_client_sdk/src/libraries/nacl_mounts/library.dsc |
index 379f1fd7d77bf009222a44b6c39cb299d4a8908d..e82c4b9893e4fc20f22debb9f78b4a182d7fa721 100644 |
--- a/native_client_sdk/src/libraries/nacl_mounts/library.dsc |
+++ b/native_client_sdk/src/libraries/nacl_mounts/library.dsc |
@@ -1,5 +1,8 @@ |
{ |
- 'TOOLS': ['newlib', 'glibc', 'pnacl', 'win', 'linux'], |
+ # Disabled pnacl for now because it warns on using the language extension |
+ # typeof(...) |
+ #'TOOLS': ['newlib', 'glibc', 'pnacl', 'win'], |
+ 'TOOLS': ['newlib', 'glibc', 'win'], |
'SEARCH': [ |
'.', |
'../utils' |
@@ -13,6 +16,7 @@ |
"kernel_intercept.cc", |
"kernel_object.cc", |
"kernel_proxy.cc", |
+ "kernel_wrap.cc", |
"mount.cc", |
"mount_mem.cc", |
"mount_node.cc", |
@@ -29,10 +33,11 @@ |
"kernel_intercept.h", |
"kernel_object.h", |
"kernel_proxy.h", |
+ "kernel_wrap.h", |
"mount.h", |
"mount_mem.h", |
- "mount_node_dir.h", |
"mount_node.h", |
+ "mount_node_dir.h", |
"mount_node_mem.h", |
"osdirent.h", |
"osstat.h", |
@@ -50,6 +55,11 @@ |
'DEST': 'include/utils', |
} |
], |
+ 'DATA': [ |
+ "kernel_wrap_glibc.cc", |
+ "kernel_wrap_newlib.cc", |
+ "kernel_wrap_win.cc", |
+ ], |
'DEST': 'src', |
'NAME': 'nacl_mounts', |
} |