Skip to content

Instantly share code, notes, and snippets.

@kubkon
Created May 22, 2021 21:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kubkon/4eb3c758209244c2ec797a527debe703 to your computer and use it in GitHub Desktop.
Save kubkon/4eb3c758209244c2ec797a527debe703 to your computer and use it in GitHub Desktop.
homebrew
❯ cat config.h
/*
* Copyright (c) 2016 Andrew Kelley
*
* This file is part of zig, which is MIT licensed.
* See http://opensource.org/licenses/MIT
*/
#ifndef ZIG_CONFIG_H
#define ZIG_CONFIG_H
// Used by zig0.cpp
#define ZIG_VERSION_MAJOR 0
#define ZIG_VERSION_MINOR 8
#define ZIG_VERSION_PATCH 0
#define ZIG_VERSION_STRING "0.8.0-dev.2596+9d311e996"
// Used by build.zig for communicating build information to self hosted build.
#define ZIG_CMAKE_BINARY_DIR "/Users/kubkon/dev/zig/build"
#define ZIG_CMAKE_PREFIX_PATH "/opt/homebrew/opt/llvm"
#define ZIG_CXX_COMPILER "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++"
#define ZIG_LLD_INCLUDE_PATH "/opt/homebrew/opt/llvm/include"
#define ZIG_LLD_LIBRARIES "/opt/homebrew/opt/llvm/lib/liblldDriver.a;/opt/homebrew/opt/llvm/lib/liblldMinGW.a;/opt/homebrew/opt/llvm/lib/liblldELF.a;/opt/homebrew/opt/llvm/lib/liblldCOFF.a;/opt/homebrew/opt/llvm/lib/liblldMachO.a;/opt/homebrew/opt/llvm/lib/liblldWasm.a;/opt/homebrew/opt/llvm/lib/liblldReaderWriter.a;/opt/homebrew/opt/llvm/lib/liblldCore.a;/opt/homebrew/opt/llvm/lib/liblldYAML.a;/opt/homebrew/opt/llvm/lib/liblldCommon.a"
#define ZIG_CLANG_LIBRARIES "/opt/homebrew/opt/llvm/lib/libclangFrontendTool.a;/opt/homebrew/opt/llvm/lib/libclangCodeGen.a;/opt/homebrew/opt/llvm/lib/libclangFrontend.a;/opt/homebrew/opt/llvm/lib/libclangDriver.a;/opt/homebrew/opt/llvm/lib/libclangSerialization.a;/opt/homebrew/opt/llvm/lib/libclangSema.a;/opt/homebrew/opt/llvm/lib/libclangStaticAnalyzerFrontend.a;/opt/homebrew/opt/llvm/lib/libclangStaticAnalyzerCheckers.a;/opt/homebrew/opt/llvm/lib/libclangStaticAnalyzerCore.a;/opt/homebrew/opt/llvm/lib/libclangAnalysis.a;/opt/homebrew/opt/llvm/lib/libclangASTMatchers.a;/opt/homebrew/opt/llvm/lib/libclangAST.a;/opt/homebrew/opt/llvm/lib/libclangParse.a;/opt/homebrew/opt/llvm/lib/libclangSema.a;/opt/homebrew/opt/llvm/lib/libclangBasic.a;/opt/homebrew/opt/llvm/lib/libclangEdit.a;/opt/homebrew/opt/llvm/lib/libclangLex.a;/opt/homebrew/opt/llvm/lib/libclangARCMigrate.a;/opt/homebrew/opt/llvm/lib/libclangRewriteFrontend.a;/opt/homebrew/opt/llvm/lib/libclangRewrite.a;/opt/homebrew/opt/llvm/lib/libclangCrossTU.a;/opt/homebrew/opt/llvm/lib/libclangIndex.a;/opt/homebrew/opt/llvm/lib/libclangToolingCore.a"
#define ZIG_LLVM_LIBRARIES "-lLLVM-12"
#define ZIG_DIA_GUIDS_LIB ""
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment