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
2020-10-24 14:59:12.623 T:69216 INFO <general>: ----------------------------------------------------------------------- | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: Starting Kodi (19.0-ALPHA1 Git:20200525-9f6d978f646-dirty). Platform: Linux ARM 64-bit | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: Using Release Kodi x64 build | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: Kodi compiled 2020-05-25 by GCC 9.3.0 for Linux ARM 64-bit version 5.7.0 (329472) | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: Running on Arch Linux ARM 0.0, kernel: Linux ARM 64-bit version 5.8.0-rc1-1-ARCH | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: FFmpeg version/source: 4.2.2-Kodi | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: 6 CPU cores available | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: ARM Features: Neon disabled | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: special://xbmc/ is mapped to: /usr/share/kodi | |
2020-10-24 14:59:12.624 T:69216 INFO <general>: special://xbmcbin/ is mapped to: |
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
# $Id$ | |
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com> | |
# Contributor: Jan "heftig" Steffens <jan.steffens@gmail.com> | |
# Contributor: Sebastian Nowicki <sebnow@gmail.com> | |
# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us> | |
# Contributor: Tobias Kieslich <tobias@justdreams.de> | |
# Contributor: Geoffroy Carrier <geoffroy.carrier@aur.archlinux.org> | |
# Contributor: Tomas Lindquist Olsen <tomas@famolsen.dk> | |
# Contributor: Roberto Alsina <ralsina@kde.org> | |
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> |
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
class build_config : public config_base | |
{ | |
public: | |
build_config( const std::string& subdirectory, const config_base& config ) : config_base(config), /*...*/ { m_build_directory = m_build_directory + subdirectory; } | |
//... | |
}; |