2020-02-25 13:56:11 +00:00
## Build instructions for Xcode 11
2014-06-25 20:15:34 +00:00
2017-04-04 09:17:54 +00:00
### Prepare folder
2014-06-25 20:15:34 +00:00
2017-10-13 19:23:19 +00:00
Choose a folder for the future build, for example ** /Users/user/TBuild**. It will be named ** *BuildPath*** in the rest of this document. All commands will be launched from Terminal.
2016-02-08 12:32:17 +00:00
2018-11-04 10:29:30 +00:00
### Obtain your API credentials
You will require **api_id** and **api_hash** to access the Telegram API servers. To learn how to obtain them [click here][api_credentials].
2017-10-13 19:23:19 +00:00
### Clone source code and prepare libraries
2014-06-25 20:15:34 +00:00
2017-10-13 19:23:19 +00:00
Go to ** *BuildPath*** and run
2015-01-10 13:07:26 +00:00
2019-10-11 06:32:26 +00:00
MAKE_THREADS_CNT=-j8
MACOSX_DEPLOYMENT_TARGET=10.12
2020-02-25 13:56:11 +00:00
UNGUARDED="-Werror=unguarded-availability-new"
MIN_VER="-mmacosx-version-min=10.12"
2015-01-10 13:07:26 +00:00
2018-01-26 00:55:31 +00:00
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
2019-11-06 08:11:01 +00:00
brew install automake cmake fdk-aac git lame libass libtool libvorbis libvpx ninja opus sdl shtool texi2html theora wget x264 xvid yasm pkg-config gnu-tar
2018-01-26 00:55:31 +00:00
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
2017-10-13 19:23:19 +00:00
git clone --recursive https://github.com/telegramdesktop/tdesktop.git
2014-06-25 20:15:34 +00:00
2019-10-11 06:32:26 +00:00
mkdir ThirdParty
cd ThirdParty
git clone https://github.com/desktop-app/patches.git
2019-11-05 08:33:13 +00:00
cd patches
2020-08-18 14:16:00 +00:00
git checkout ddd4084
2019-11-05 08:33:13 +00:00
cd ../
2019-10-11 06:32:26 +00:00
git clone https://chromium.googlesource.com/external/gyp
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
export PATH="$PWD/depot_tools:$PATH"
cd gyp
git checkout 9f2a7bb1
git apply ../patches/gyp.diff
./setup.py build
sudo ./setup.py install
cd ../..
2020-02-25 13:56:11 +00:00
mkdir -p Libraries/macos
2019-10-11 06:32:26 +00:00
cd Libraries/macos
2014-06-25 20:15:34 +00:00
2019-10-02 11:43:54 +00:00
git clone https://github.com/desktop-app/patches.git
2019-11-05 08:33:13 +00:00
cd patches
2020-08-18 14:16:00 +00:00
git checkout ddd4084
2020-02-26 16:17:13 +00:00
cd ..
2017-11-19 14:37:07 +00:00
2020-07-16 08:52:05 +00:00
git clone https://git.tukaani.org/xz.git
cd xz
git checkout v5.2.5
mkdir build
cd build
CFLAGS="$UNGUARDED" CPPFLAGS="$UNGUARDED" cmake -D CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.12 -D CMAKE_INSTALL_PREFIX:STRING=/usr/local/macos ..
make $MAKE_THREADS_CNT
cd ../..
2020-02-25 13:56:11 +00:00
xz_ver=5.2.4
wget https://tukaani.org/xz/xz-$xz_ver.tar.gz
tar -xvzf xz-$xz_ver.tar.gz
rm xz-$xz_ver.tar.gz
cd xz-$xz_ver
CFLAGS="$MIN_VER" LDFLAGS="$MIN_VER" ./configure --prefix=/usr/local/macos
2019-10-11 06:32:26 +00:00
make $MAKE_THREADS_CNT
2014-06-25 20:15:34 +00:00
sudo make install
2017-10-13 19:23:19 +00:00
cd ..
2014-06-25 20:15:34 +00:00
2019-11-05 12:27:42 +00:00
git clone https://github.com/desktop-app/zlib.git
2017-10-13 19:23:19 +00:00
cd zlib
2020-02-25 13:56:11 +00:00
CFLAGS="$MIN_VER $UNGUARDED" LDFLAGS="$MIN_VER" ./configure --prefix=/usr/local/macos
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2014-09-04 12:23:28 +00:00
sudo make install
2017-10-13 19:23:19 +00:00
cd ..
2014-09-04 12:23:28 +00:00
2019-10-11 06:32:26 +00:00
git clone https://github.com/openssl/openssl openssl_1_1_1
cd openssl_1_1_1
git checkout OpenSSL_1_1_1-stable
2020-07-12 19:35:19 +00:00
./Configure --prefix=/usr/local/macos no-tests darwin64-x86_64-cc -static $MIN_VER
2019-04-21 08:46:57 +00:00
make build_libs $MAKE_THREADS_CNT
2017-10-13 19:23:19 +00:00
cd ..
2014-09-04 12:23:28 +00:00
2017-11-23 15:00:11 +00:00
git clone https://github.com/xiph/opus
cd opus
2018-11-29 12:33:01 +00:00
git checkout v1.3
2017-11-23 15:00:11 +00:00
./autogen.sh
2020-02-25 13:56:11 +00:00
CFLAGS="$MIN_VER $UNGUARDED" CPPFLAGS="$MIN_VER $UNGUARDED" LDFLAGS="$MIN_VER" ./configure --prefix=/usr/local/macos
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2017-11-23 15:00:11 +00:00
sudo make install
cd ..
2020-02-25 13:56:11 +00:00
libiconv_ver=1.16
wget https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$libiconv_ver.tar.gz
tar -xvzf libiconv-$libiconv_ver.tar.gz
rm libiconv-$libiconv_ver.tar.gz
cd libiconv-$libiconv_ver
CFLAGS="$MIN_VER $UNGUARDED" CPPFLAGS="$MIN_VER $UNGUARDED" LDFLAGS="$MIN_VER" ./configure --enable-static --prefix=/usr/local/macos
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2014-09-04 12:23:28 +00:00
sudo make install
2017-10-13 19:23:19 +00:00
cd ..
2014-09-04 12:23:28 +00:00
2017-10-13 19:23:19 +00:00
git clone https://github.com/FFmpeg/FFmpeg.git ffmpeg
cd ffmpeg
2017-11-23 15:00:11 +00:00
git checkout release/3.4
2015-06-01 12:44:10 +00:00
CFLAGS=`freetype-config --cflags`
LDFLAGS=`freetype-config --libs`
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig:/usr/lib/pkgconfig:/usr/X11/lib/pkgconfig
2019-10-11 06:32:26 +00:00
./configure --prefix=/usr/local/macos \
2020-02-25 13:56:11 +00:00
--extra-cflags="$MIN_VER $UNGUARDED" \
--extra-cxxflags="$MIN_VER $UNGUARDED" \
--extra-ldflags="$MIN_VER" \
2019-03-06 10:00:35 +00:00
--enable-protocol=file --enable-libopus \
--disable-programs \
--disable-doc \
--disable-network \
--disable-everything \
--enable-hwaccel=h264_videotoolbox \
--enable-hwaccel=hevc_videotoolbox \
--enable-hwaccel=mpeg1_videotoolbox \
--enable-hwaccel=mpeg2_videotoolbox \
--enable-hwaccel=mpeg4_videotoolbox \
--enable-decoder=aac \
--enable-decoder=aac_at \
--enable-decoder=aac_fixed \
--enable-decoder=aac_latm \
--enable-decoder=aasc \
--enable-decoder=alac \
--enable-decoder=alac_at \
--enable-decoder=flac \
--enable-decoder=gif \
--enable-decoder=h264 \
--enable-decoder=hevc \
--enable-decoder=mp1 \
--enable-decoder=mp1float \
--enable-decoder=mp2 \
--enable-decoder=mp2float \
--enable-decoder=mp3 \
--enable-decoder=mp3adu \
--enable-decoder=mp3adufloat \
--enable-decoder=mp3float \
--enable-decoder=mp3on4 \
--enable-decoder=mp3on4float \
--enable-decoder=mpeg4 \
--enable-decoder=msmpeg4v2 \
--enable-decoder=msmpeg4v3 \
--enable-decoder=opus \
--enable-decoder=pcm_alaw \
--enable-decoder=pcm_alaw_at \
--enable-decoder=pcm_f32be \
--enable-decoder=pcm_f32le \
--enable-decoder=pcm_f64be \
--enable-decoder=pcm_f64le \
--enable-decoder=pcm_lxf \
--enable-decoder=pcm_mulaw \
--enable-decoder=pcm_mulaw_at \
--enable-decoder=pcm_s16be \
--enable-decoder=pcm_s16be_planar \
--enable-decoder=pcm_s16le \
--enable-decoder=pcm_s16le_planar \
--enable-decoder=pcm_s24be \
--enable-decoder=pcm_s24daud \
--enable-decoder=pcm_s24le \
--enable-decoder=pcm_s24le_planar \
--enable-decoder=pcm_s32be \
--enable-decoder=pcm_s32le \
--enable-decoder=pcm_s32le_planar \
--enable-decoder=pcm_s64be \
--enable-decoder=pcm_s64le \
--enable-decoder=pcm_s8 \
--enable-decoder=pcm_s8_planar \
--enable-decoder=pcm_u16be \
--enable-decoder=pcm_u16le \
--enable-decoder=pcm_u24be \
--enable-decoder=pcm_u24le \
--enable-decoder=pcm_u32be \
--enable-decoder=pcm_u32le \
--enable-decoder=pcm_u8 \
--enable-decoder=pcm_zork \
--enable-decoder=vorbis \
--enable-decoder=wavpack \
--enable-decoder=wmalossless \
--enable-decoder=wmapro \
--enable-decoder=wmav1 \
--enable-decoder=wmav2 \
--enable-decoder=wmavoice \
--enable-encoder=libopus \
--enable-parser=aac \
--enable-parser=aac_latm \
--enable-parser=flac \
--enable-parser=h264 \
--enable-parser=hevc \
--enable-parser=mpeg4video \
--enable-parser=mpegaudio \
--enable-parser=opus \
--enable-parser=vorbis \
--enable-demuxer=aac \
--enable-demuxer=flac \
--enable-demuxer=gif \
--enable-demuxer=h264 \
--enable-demuxer=hevc \
--enable-demuxer=m4v \
--enable-demuxer=mov \
--enable-demuxer=mp3 \
--enable-demuxer=ogg \
--enable-demuxer=wav \
--enable-muxer=ogg \
--enable-muxer=opus
2014-09-04 12:23:28 +00:00
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2014-09-04 12:23:28 +00:00
sudo make install
2017-10-13 19:23:19 +00:00
cd ..
2014-09-04 12:23:28 +00:00
2017-10-13 19:23:19 +00:00
git clone git://repo.or.cz/openal-soft.git
2018-11-07 20:01:58 +00:00
cd openal-soft
2019-02-20 07:36:55 +00:00
git checkout v1.19
2018-11-07 20:01:58 +00:00
cd build
2020-02-25 13:56:11 +00:00
CFLAGS=$UNGUARDED CPPFLAGS=$UNGUARDED cmake -D CMAKE_INSTALL_PREFIX:PATH=/usr/local/macos -D ALSOFT_EXAMPLES=OFF -D LIBTYPE:STRING=STATIC -D CMAKE_OSX_DEPLOYMENT_TARGET:STRING=10.12 ..
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2016-04-23 11:40:42 +00:00
sudo make install
2018-01-26 00:55:31 +00:00
cd ../..
2016-02-08 12:32:17 +00:00
2017-04-06 08:06:29 +00:00
git clone https://chromium.googlesource.com/crashpad/crashpad.git
2016-02-08 12:32:17 +00:00
cd crashpad
2017-04-06 08:06:29 +00:00
git checkout feb3aa3923
2019-11-07 03:12:36 +00:00
git apply ../patches/crashpad.diff
2017-04-06 08:06:29 +00:00
cd third_party/mini_chromium
git clone https://chromium.googlesource.com/chromium/mini_chromium
cd mini_chromium
git checkout 7c5b0c1ab4
2019-11-07 03:12:36 +00:00
git apply ../../../../patches/mini_chromium.diff
2017-04-06 08:06:29 +00:00
cd ../../gtest
git clone https://chromium.googlesource.com/external/github.com/google/googletest gtest
cd gtest
git checkout d62d6c6556
2017-10-13 19:23:19 +00:00
cd ../../..
2017-04-06 08:06:29 +00:00
2019-10-11 06:32:26 +00:00
build/gyp_crashpad.py -Dmac_deployment_target=10.10
2017-04-06 08:06:29 +00:00
ninja -C out/Debug
2016-02-08 12:32:17 +00:00
ninja -C out/Release
2017-10-13 19:23:19 +00:00
cd ..
2016-02-08 12:32:17 +00:00
2020-08-13 09:02:15 +00:00
git clone git://code.qt.io/qt/qt5.git qt_5_12_8
cd qt_5_12_8
2017-10-13 19:23:19 +00:00
perl init-repository --module-subset=qtbase,qtimageformats
2020-03-01 11:38:25 +00:00
git checkout v5.12.8
2020-05-12 15:43:39 +00:00
git submodule update qtbase qtimageformats
2019-10-11 06:32:26 +00:00
cd qtbase
2020-06-02 10:14:51 +00:00
find ../../patches/qtbase_5_12_8 -type f -print0 | sort -z | xargs -0 git apply
2019-10-11 06:32:26 +00:00
cd ..
2016-09-12 11:45:41 +00:00
2020-03-01 11:38:25 +00:00
./configure -prefix "/usr/local/desktop-app/Qt-5.12.8" \
2020-02-25 13:56:11 +00:00
-debug-and-release \
-force-debug-info \
-opensource \
-confirm-license \
-static \
-opengl desktop \
-no-openssl \
-securetransport \
-nomake examples \
-nomake tests \
-platform macx-clang
2019-04-21 08:46:57 +00:00
make $MAKE_THREADS_CNT
2017-10-13 19:23:19 +00:00
sudo make install
cd ..
2016-09-12 11:45:41 +00:00
2020-08-20 14:00:18 +00:00
git clone https://github.com/desktop-app/tg_owt.git
cd tg_owt
mkdir out
cd out
mkdir Debug
cd Debug
2020-08-20 19:19:53 +00:00
cmake -G Ninja \
-DCMAKE_BUILD_TYPE=Debug \
-DTG_OWT_SPECIAL_TARGET=mac \
-DTG_OWT_LIBJPEG_INCLUDE_PATH=`pwd`/../../../qt_5_12_8/qtbase/src/3rdparty/libjpeg \
-DTG_OWT_OPENSSL_INCLUDE_PATH=`pwd`/../../../openssl_1_1_1/include \
-DTG_OWT_OPUS_INCLUDE_PATH=/usr/local/macos/include/opus \
-DTG_OWT_FFMPEG_INCLUDE_PATH=/usr/local/macos/include ../..
2020-08-20 14:00:18 +00:00
ninja
cd ..
mkdir Release
cd Release
2020-08-20 19:19:53 +00:00
cmake -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DTG_OWT_SPECIAL_TARGET=mac \
-DTG_OWT_LIBJPEG_INCLUDE_PATH=`pwd`/../../../qt_5_12_8/qtbase/src/3rdparty/libjpeg \
-DTG_OWT_OPENSSL_INCLUDE_PATH=`pwd`/../../../openssl_1_1_1/include \
-DTG_OWT_OPUS_INCLUDE_PATH=/usr/local/macos/include/opus \
-DTG_OWT_FFMPEG_INCLUDE_PATH=/usr/local/macos/include ../..
2020-08-20 14:00:18 +00:00
ninja
2020-08-20 19:19:53 +00:00
cd ../../..
2020-08-11 10:26:48 +00:00
2017-10-13 19:23:19 +00:00
### Building the project
2014-06-25 20:15:34 +00:00
2019-12-31 12:08:56 +00:00
Go to ** *BuildPath*/tdesktop/Telegram** and run (using [your **api_id** and **api_hash** ](#obtain-your-api-credentials ))
2016-09-12 11:45:41 +00:00
2019-12-31 12:08:56 +00:00
./configure.sh -D TDESKTOP_API_ID=YOUR_API_ID -D TDESKTOP_API_HASH=YOUR_API_HASH -D DESKTOP_APP_USE_PACKAGED=OFF
2016-09-12 11:45:41 +00:00
2019-12-31 12:08:56 +00:00
Then launch Xcode, open ** *BuildPath*/tdesktop/out/Telegram.xcodeproj** and build for Debug / Release.
2018-11-04 10:29:30 +00:00
[api_credentials]: api_credentials.md