feat(CMakeLists): put configuration options relevant to leanc at config.h
This commit is contained in:
parent
13d2398fb3
commit
79e2abe33f
4 changed files with 17 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -13,6 +13,7 @@ GTAGS
|
|||
.lean_options
|
||||
.vs
|
||||
/src/stage1
|
||||
/src/config.h
|
||||
compile_commands.json
|
||||
*.idea
|
||||
tasks.json
|
||||
|
|
|
|||
|
|
@ -120,11 +120,11 @@ if ("${FAKE_FREE}" MATCHES "ON")
|
|||
endif()
|
||||
|
||||
if ("${LAZY_RC}" MATCHES "ON")
|
||||
set(LEAN_EXTRA_CXX_FLAGS "${LEAN_EXTRA_CXX_FLAGS} -D LEAN_LAZY_RC")
|
||||
set(LEAN_LAZY_RC "#define LEAN_LAZY_RC")
|
||||
endif()
|
||||
|
||||
if ("${SMALL_ALLOCATOR}" MATCHES "ON")
|
||||
set(LEAN_EXTRA_CXX_FLAGS "${LEAN_EXTRA_CXX_FLAGS} -D LEAN_SMALL_ALLOCATOR")
|
||||
set(LEAN_SMALL_ALLOCATOR "#define LEAN_SMALL_ALLOCATOR")
|
||||
endif()
|
||||
|
||||
if ("${RUNTIME_STATS}" MATCHES "ON")
|
||||
|
|
@ -417,6 +417,10 @@ endif ()
|
|||
|
||||
# Version
|
||||
configure_file("${LEAN_SOURCE_DIR}/version.h.in" "${LEAN_BINARY_DIR}/version.h")
|
||||
# Remark: we did not put `config.h` in `${LEAN_BINARY_DIR}` because `leanc` depends on this file.
|
||||
# Note that, `leanc` already had problems with multiple configurations before we added `config.h`.
|
||||
# For example, it uses binary files located in the `bin` directory.
|
||||
configure_file("${LEAN_SOURCE_DIR}/config.h.in" "${LEAN_SOURCE_DIR}/config.h")
|
||||
configure_file("${LEAN_SOURCE_DIR}/../library/Makefile.in" "${LEAN_SOURCE_DIR}/../library/Makefile")
|
||||
|
||||
include_directories("${LEAN_BINARY_DIR}")
|
||||
|
|
|
|||
9
src/config.h.in
Normal file
9
src/config.h.in
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
Copyright (c) 2019 Microsoft Corporation. All rights reserved.
|
||||
Released under Apache 2.0 license as described in the file LICENSE.
|
||||
|
||||
Author: Leonardo de Moura
|
||||
*/
|
||||
#pragma once
|
||||
@LEAN_SMALL_ALLOCATOR@
|
||||
@LEAN_LAZY_RC@
|
||||
|
|
@ -12,6 +12,7 @@ Author: Leonardo de Moura
|
|||
#if !defined(__APPLE__)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#include "config.h"
|
||||
#include "runtime/compiler_hints.h"
|
||||
#include "runtime/mpz.h"
|
||||
#include "runtime/int64.h"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue