This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
script: | |
- sudo unlink /usr/bin/gcc && sudo ln -s /usr/bin/gcc-5 /usr/bin/gcc | |
- gcc --version | |
addons: | |
apt: | |
sources: | |
- ubuntu-toolchain-r-test | |
packages: | |
- gcc-5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Inspired from https://github.com/piwik/travis-scripts/blob/git-lfs/install_git_lfs.sh | |
# Change the remote because git lfs doesn't support git:// URLs | |
git remote set-url origin "https://$GITHUB_USER_TOKEN:@github.com/$TRAVIS_REPO_SLUG.git" | |
# Install it! | |
curl -sLo - https://github.com/github/git-lfs/releases/download/v0.5.2/git-lfs-linux-amd64-0.5.2.tar.gz | tar xzvf - | |
cd git-lfs-* | |
sudo ./install.sh | |
cd .. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: chrome/chrome.gyp | |
=================================================================== | |
--- chrome/chrome.gyp (revision 32052) | |
+++ chrome/chrome.gyp (working copy) | |
@@ -2781,6 +2781,11 @@ | |
'browser/views/tabs/tab_overview_types.cc', | |
'browser/views/tabs/tab_overview_types.h', | |
], | |
+ 'msvs_settings': { | |
+ 'VCCLCompilerTool': { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- C:/Documents and Settings/user/Desktop/atlstdthunk.h Wed Oct 21 21:29:23 2009 | |
+++ C:/WinDDK/6001.18002/inc/crt/atl71/atlstdthunk.h Wed Oct 21 21:28:19 2009 | |
@@ -40,8 +40,8 @@ | |
// Thunks for __stdcall member functions | |
#if defined(_M_IX86) | |
-PVOID __stdcall __AllocStdCallThunk(VOID); | |
-VOID __stdcall __FreeStdCallThunk(PVOID); | |
+void* __stdcall __AllocStdCallThunk(); | |
+void __stdcall __FreeStdCallThunk(void* ptr); |
NewerOlder