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
| require 'formula' | |
| # INSTRUCTIONS FROM MK | |
| # You can download the file and run `brew install ./dblatex.rb` | |
| # BEFORE INSTALLING THIS FORMULA: | |
| # 1.) Install MacTex or BasicTex from https://www.tug.org/mactex/ | |
| # 2.) Make yourself the owner of the tex installation directory: | |
| # $ sudo chown -R "$(id -un):$(id -gn)" /usr/local/texlive | |
| # 3.) Update tlmgr and install required packages |
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
| #include <stdint.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <xmmintrin.h> // SSE | |
| #include <immintrin.h> // AVX | |
| #ifdef _WIN32 | |
| #include <intrin.h> // for __movsb, __movsd, __movsq |