$ brew info llvm
llvm: stable 9.0.1 (bottled), HEAD [keg-only]
Next-gen compiler infrastructure
https://llvm.org/
Not installed
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/llvm.rb
==> Dependencies
Build: cmake ✘
Required: libffi ✔, swig ✘
$ brew search gcc
==> Formulae
gcc [email protected] gcc@5 gcc@6 gcc@7 gcc@8 i386-elf-gcc
$ brew info gcc
This file contains 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
/Applications/Utilities/Activity\ Monitor.app/Contents/MacOS/Activity\ Monitor -AppleLanguages '(en)' |
$ brew search llvm
==> Formulae
llvm [email protected] llvm@4 llvm@5 llvm@6 llvm@7
$ brew info llvm
llvm: stable 8.0.0 (bottled), HEAD [keg-only]
Next-gen compiler infrastructure
This file contains 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
../%{JS: Util.asciify("build-%{CurrentProject:Name}-%{CurrentKit:FileSystemName}-%{CurrentBuild:Name}")} |
This file contains 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
{ | |
"configurations": [ | |
{ | |
"name": "Mac", | |
"includePath": [ | |
"${workspaceFolder}/src/**", | |
"${workspaceFolder}/vendor/" | |
], | |
"defines": [], | |
"macFrameworkPath": [ |
This file contains 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
/* main.cpp */ | |
#include "tst_mytestcasename.h" | |
#include <gtest/gtest.h> | |
int main(int argc, char *argv[]) | |
{ | |
::testing::InitGoogleTest(&argc, argv); | |
return RUN_ALL_TESTS(); | |
} |
This file contains 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
#--------------------------------------------------------------------- | |
# НАСТРОЙКИ | |
#--------------------------------------------------------------------- | |
# Показать глобальную конфигурацию: | |
git config --global --list | |
git config --local user.name "user name" | |
git config --local user.email "[email protected]" | |
git config --local core.fileMode false |
This file contains 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
xclip -out > $(date +"%Y-%m-%d_%H-%M-%S")'.md' |