/* -*- C++ -*- * Serene Programming Language * * Copyright (c) 2019-2021 Sameer Rahmani * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef SERENE_SERENE_H #define SERENE_SERENE_H #include "serene/config.h" #include "serene/context.h" #include "serene/export.h" #include "serene/source_mgr.h" namespace serene { /// Clinet applications have to call this function before any interaction with /// the Serene's compiler API. SERENE_EXPORT void initCompiler(); /// Register the global CLI options of the serene compiler. If the client /// application needs to setup the compilers options automatically use this /// function in conjunction with `applySereneCLOptions`. SERENE_EXPORT void registerSereneCLOptions(); /// Applies the global compiler options on the give \p SereneContext. This /// function has to be called after `llvm::cl::ParseCommandLineOptions`. SERENE_EXPORT void applySereneCLOptions(SereneContext &ctx); } // namespace serene #endif