mirror of https://github.com/procxx/kepka.git
Build crashpad from git. Crashpad path has changed.
This commit is contained in:
parent
0f7567970c
commit
6746d4ba2d
|
@ -123,7 +123,7 @@
|
||||||
'postbuild_name': 'Copy crashpad_handler to Helpers',
|
'postbuild_name': 'Copy crashpad_handler to Helpers',
|
||||||
'action': [
|
'action': [
|
||||||
'cp',
|
'cp',
|
||||||
'<(libs_loc)/crashpad_oldmac/crashpad/out/${CONFIGURATION}/crashpad_handler',
|
'<(libs_loc)/macold/crashpad/out/${CONFIGURATION}/crashpad_handler',
|
||||||
'${BUILT_PRODUCTS_DIR}/Telegram.app/Contents/Helpers/',
|
'${BUILT_PRODUCTS_DIR}/Telegram.app/Contents/Helpers/',
|
||||||
],
|
],
|
||||||
}],
|
}],
|
||||||
|
@ -141,8 +141,8 @@
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
'include_dirs': [
|
'include_dirs': [
|
||||||
'<(libs_loc)/crashpad/crashpad',
|
'<(libs_loc)/crashpad',
|
||||||
'<(libs_loc)/crashpad/crashpad/third_party/mini_chromium/mini_chromium',
|
'<(libs_loc)/crashpad/third_party/mini_chromium/mini_chromium',
|
||||||
'<(libs_loc)/openssl-xcode/include'
|
'<(libs_loc)/openssl-xcode/include'
|
||||||
],
|
],
|
||||||
'library_dirs': [
|
'library_dirs': [
|
||||||
|
@ -151,12 +151,12 @@
|
||||||
'configurations': {
|
'configurations': {
|
||||||
'Debug': {
|
'Debug': {
|
||||||
'library_dirs': [
|
'library_dirs': [
|
||||||
'<(libs_loc)/crashpad/crashpad/out/Debug',
|
'<(libs_loc)/crashpad/out/Debug',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
'Release': {
|
'Release': {
|
||||||
'library_dirs': [
|
'library_dirs': [
|
||||||
'<(libs_loc)/crashpad/crashpad/out/Release',
|
'<(libs_loc)/crashpad/out/Release',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -190,7 +190,7 @@
|
||||||
'postbuild_name': 'Copy crashpad_client to Helpers',
|
'postbuild_name': 'Copy crashpad_client to Helpers',
|
||||||
'action': [
|
'action': [
|
||||||
'cp',
|
'cp',
|
||||||
'<(libs_loc)/crashpad/crashpad/out/${CONFIGURATION}/crashpad_handler',
|
'<(libs_loc)/crashpad/out/${CONFIGURATION}/crashpad_handler',
|
||||||
'${BUILT_PRODUCTS_DIR}/Telegram.app/Contents/Helpers/',
|
'${BUILT_PRODUCTS_DIR}/Telegram.app/Contents/Helpers/',
|
||||||
],
|
],
|
||||||
}],
|
}],
|
||||||
|
|
|
@ -233,6 +233,7 @@ In Terminal go to **/Users/user/TBuild/Libraries/macold** and run:
|
||||||
git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest
|
git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest
|
||||||
cd gtest
|
cd gtest
|
||||||
git checkout d62d6c6556
|
git checkout d62d6c6556
|
||||||
|
cd ../../../
|
||||||
|
|
||||||
build/gyp_crashpad.py -Dmac_deployment_target=10.6
|
build/gyp_crashpad.py -Dmac_deployment_target=10.6
|
||||||
ninja -C out/Debug
|
ninja -C out/Debug
|
||||||
|
|
|
@ -221,14 +221,22 @@ In Terminal go to **/Users/user/TBuild/Libraries** and run:
|
||||||
|
|
||||||
In Terminal go to **/Users/user/TBuild/Libraries** and run:
|
In Terminal go to **/Users/user/TBuild/Libraries** and run:
|
||||||
|
|
||||||
export PATH=/Users/user/TBuild/Libraries/depot_tools:$PATH:/Users/user/TBuild/Libraries/gyp
|
git clone https://chromium.googlesource.com/crashpad/crashpad.git
|
||||||
mkdir crashpad
|
|
||||||
cd crashpad
|
cd crashpad
|
||||||
fetch crashpad
|
git checkout feb3aa3923
|
||||||
cd crashpad/third_party/mini_chromium/mini_chromium
|
cd third_party/mini_chromium
|
||||||
git apply ../../../../../../tdesktop/Telegram/Patches/mini_chromium.diff
|
git clone https://chromium.googlesource.com/chromium/mini_chromium
|
||||||
|
cd mini_chromium
|
||||||
|
git checkout 7c5b0c1ab4
|
||||||
|
git apply ../../../../../tdesktop/Telegram/Patches/mini_chromium.diff
|
||||||
|
cd ../../gtest
|
||||||
|
git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest
|
||||||
|
cd gtest
|
||||||
|
git checkout d62d6c6556
|
||||||
cd ../../../
|
cd ../../../
|
||||||
|
|
||||||
build/gyp_crashpad.py -Dmac_deployment_target=10.8
|
build/gyp_crashpad.py -Dmac_deployment_target=10.8
|
||||||
|
ninja -C out/Debug
|
||||||
ninja -C out/Release
|
ninja -C out/Release
|
||||||
|
|
||||||
#### Prepare GYP
|
#### Prepare GYP
|
||||||
|
|
Loading…
Reference in New Issue