mirror of
https://github.com/verilator/verilator.git
synced 2025-02-08 14:41:48 +00:00
93 lines
2.8 KiB
C++
93 lines
2.8 KiB
C++
// -*- mode: C++; c-file-style: "cc-mode" -*-
|
|
//*************************************************************************
|
|
// DESCRIPTION: Verilator: Configure source; system configuration
|
|
//
|
|
// This file is part of Verilator.
|
|
//
|
|
// Code available from: https://verilator.org
|
|
//
|
|
//*************************************************************************
|
|
//
|
|
// Copyright 2003-2020 by Wilson Snyder. This program is free software; you
|
|
// can redistribute it and/or modify it under the terms of either the GNU
|
|
// Lesser General Public License Version 3 or the Perl Artistic License
|
|
// Version 2.0.
|
|
// SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
//
|
|
//*************************************************************************
|
|
|
|
//**********************************************************************
|
|
//**** Version and host name
|
|
|
|
// Autoconf substitutes this with the strings from AC_INIT.
|
|
#define PACKAGE_STRING ""
|
|
|
|
#define DTVERSION PACKAGE_STRING
|
|
|
|
//**********************************************************************
|
|
//**** Functions
|
|
|
|
//**********************************************************************
|
|
//**** Headers
|
|
|
|
//**********************************************************************
|
|
//**** Default environment
|
|
|
|
// Set defines to defaults for environment variables
|
|
// If set to "", this default is ignored and the user is expected
|
|
// to set them at Verilator runtime.
|
|
|
|
// clang-format off
|
|
#ifndef DEFENV_SYSTEMC
|
|
# define DEFENV_SYSTEMC ""
|
|
#endif
|
|
#ifndef DEFENV_SYSTEMC_ARCH
|
|
# define DEFENV_SYSTEMC_ARCH ""
|
|
#endif
|
|
#ifndef DEFENV_SYSTEMC_INCLUDE
|
|
# define DEFENV_SYSTEMC_INCLUDE ""
|
|
#endif
|
|
#ifndef DEFENV_SYSTEMC_LIBDIR
|
|
# define DEFENV_SYSTEMC_LIBDIR ""
|
|
#endif
|
|
#ifndef DEFENV_VERILATOR_ROOT
|
|
# define DEFENV_VERILATOR_ROOT ""
|
|
#endif
|
|
// clang-format on
|
|
|
|
//**********************************************************************
|
|
//**** Compile options
|
|
|
|
#include <sys/types.h>
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
// Avoid needing std:: prefixes on some very common items
|
|
typedef std::string string;
|
|
using std::cout;
|
|
using std::endl;
|
|
using std::make_pair;
|
|
|
|
//**********************************************************************
|
|
//**** Configure-discovered library options
|
|
|
|
// Define if struct stat has st_mtim.tv_nsec (from configure)
|
|
#undef HAVE_STAT_NSEC
|
|
// Define if SystemC found
|
|
// - If defined, the default search path has it, so support is always enabled.
|
|
// - If undef, not system-wide, user can set SYSTEMC_INCLUDE.
|
|
#undef HAVE_SYSTEMC
|
|
|
|
//**********************************************************************
|
|
//**** OS and compiler specifics
|
|
|
|
#include "verilatedos.h"
|
|
|
|
//**********************************************************************
|
|
//**** This file sometimes gets truncated, so check in consumers
|
|
#define HAVE_CONFIG_BUILD
|