diff options
author | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-21 03:38:56 +0000 |
---|---|---|
committer | noelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-21 03:38:56 +0000 |
commit | 763ed73a7e5dd90f224b0410cc2874412eaaed71 (patch) | |
tree | a95dc88cee41083d839003dadd01c0449375ea6f /native_client_sdk/src/tools/host_vc.mk | |
parent | c4d467a16bac8e6f2f7bf84d6e7f449200504d75 (diff) | |
download | chromium_src-763ed73a7e5dd90f224b0410cc2874412eaaed71.zip chromium_src-763ed73a7e5dd90f224b0410cc2874412eaaed71.tar.gz chromium_src-763ed73a7e5dd90f224b0410cc2874412eaaed71.tar.bz2 |
NaCl SDK example failson Windows
On Windows we use a struct for the pthread_t. The example sets
the struct to NULL which causes an error. In addition, the example
uses "this" in the constructor which generates a warning which becomes
an error.
NOTRY=true
TBR=binji@chromium.org
BUG=
Review URL: https://codereview.chromium.org/12039004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'native_client_sdk/src/tools/host_vc.mk')
-rw-r--r-- | native_client_sdk/src/tools/host_vc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native_client_sdk/src/tools/host_vc.mk b/native_client_sdk/src/tools/host_vc.mk index 87d6621..df426db 100644 --- a/native_client_sdk/src/tools/host_vc.mk +++ b/native_client_sdk/src/tools/host_vc.mk @@ -15,8 +15,8 @@ # We use the C++ compiler for everything and then use the -Wl,-as-needed flag # in the linker to drop libc++ unless it's actually needed. # -HOST_CC?=cl.exe /nologo /WX -HOST_CXX?=cl.exe /nologo /EHsc /WX +HOST_CC?=cl.exe /nologo +HOST_CXX?=cl.exe /nologo /EHsc HOST_LINK?=link.exe /nologo HOST_LIB?=lib.exe /nologo |