| Index: chrome/nacl/sel_main.cc
|
| ===================================================================
|
| --- chrome/nacl/sel_main.cc (revision 35303)
|
| +++ chrome/nacl/sel_main.cc (working copy)
|
| @@ -8,6 +8,10 @@
|
| #include <crt_externs.h>
|
| #endif
|
|
|
| +#ifdef _WIN64 /* TODO(gregoryd): remove this when win64 issues are fixed */
|
| +#define NACL_NO_INLINE
|
| +#endif
|
| +
|
| EXTERN_C_BEGIN
|
| #include "native_client/src/shared/platform/nacl_sync.h"
|
| #include "native_client/src/shared/platform/nacl_sync_checked.h"
|
| @@ -50,6 +54,10 @@
|
| }
|
|
|
| int SelMain(const int desc, const NaClHandle handle) {
|
| +#ifdef _WIN64
|
| + /* TODO(gregoryd): remove this when NaCl's service_runtime supports Win64 */
|
| + return 0;
|
| +#else
|
| char *av[1];
|
| int ac = 1;
|
|
|
| @@ -196,5 +204,6 @@
|
| NaClAllModulesFini();
|
|
|
| return ret_code;
|
| +#endif
|
| }
|
|
|
|
|