forked from cornell-zhang/heterocl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.config
32 lines (26 loc) · 931 Bytes
/
Makefile.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# set your own path to llvm-config
LLVM_CONFIG = $(shell which llvm-config-4.0 2>/dev/null || \
which llvm-config-5.0 2>/dev/null || \
which llvm-config-6.0 2>/dev/null || \
which llvm-config-7.0 2>/dev/null)
# set your own path to cmake
CMAKE_CONFIG = $(shell which cmake 2> /dev/null)
CMAKE_OK = no
# set whether to use vivado hls runtime
USE_VIVADO_HLS = 1
# set whether to use sdaccel opencl runtime
USE_SDACCEL_HLS = 1
# Specify current directory level with respect to CLAY_ROOT
ifndef LEVEL
LEVEL := .
endif
ifndef HCL_ROOT
CurrDir = $(shell pwd)
HCL_ROOT = $(shell cd $(CurrDir)/$(LEVEL); pwd)
endif
HCL_PKG = $(HCL_ROOT)/pkgs
HCL_PKG_BUILD = $(HCL_ROOT)/build/pkgs
HCL_PKG_INSTALL = $(HCL_PKG_BUILD)/install
HCL_PKG_LLVM =$(HCL_PKG_BUILD)/llvm
HCL_PKG_LLVM_BIN = $(HCL_PKG_LLVM)/build/bin
HCL_PKG_CMAKE_BIN = $(HCL_PKG_BUILD)/cmake/build/cmake/bin