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
# Check if a library exists | |
define lib_exists | |
echo "int main(){}" | g++ -x c++ -Wl,--no-as-needed -l$(1) - | |
endef | |
# Update a git submodule | |
define update_external | |
if git submodule status external/$(1) | egrep -q '^[-]|^[+]'; then\ | |
git submodule update --init external/$(1);\ | |
fi |
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 clone https://github.com/llvm/llvm-project.git --depth=1 /tmp/llvm | |
mkdir /tmp/llvm/build | |
cd /tmp/llvm/build | |
cmake -DLLVM_ENABLE_PROJECTS="clang;openmp;libcxx;libcxxabi;libunwind;lldb;compiler-rt;lld" -DCMAKE_INSTALL_PREFIX="/opt/llvm" ../llvm | |
make -j64 | |
make install |
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
#include "dict.h" | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdio.h> | |
static int NUMBUCKETS = 8; | |
static int INITBUCKETCAPACITY = 8; | |
void dict_new(struct Dict* dict) { | |
dict->numbuckets = NUMBUCKETS; |
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
// how to locate application data %AppData% directory path on Windows 10 MSVC | |
// see on documentation https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shgetknownfolderpath?redirectedfrom=MSDN | |
// compiled with cl .\appdata.c Shell32.lib | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <shlobj_core.h> | |
#include <direct.h> | |
int main() { |
OlderNewer