Project

General

Profile

Download (5.15 KB) Statistics
| Branch: | Tag: | Revision:
1
# - Find Lustre compiler
2
# Find the Lustre synchronous language compiler with associated includes path.
3
# See https://cavale.enseeiht.fr/redmine/projects/lustrec
4
# This module defines
5
#  LUSTRE_COMPILER, the lustre compiler
6
#  LUSTRE_COMPILER_VERSION, the version of the lustre compiler
7
#  LUSTRE_INCLUDE_DIR, where to find dword.h, etc.
8
#  LUSTRE_FOUND, If false, Lustre was not found.
9
# On can set LUSTRE_PATH_HINT before using find_package(Lustre) and the
10
# module with use the PATH as a hint to find lustrec.
11
#
12
# The hint can be given on the command line too:
13
#   cmake -DLUSTRE_PATH_HINT=/DATA/ERIC/Lustre/lustre-x.y /path/to/source
14
#
15
# The module defines some functions:
16
#   Lustre_Compile([NODE <Lustre Main Node>]
17
#                  LUS_FILE <Lustre file>
18
#                  [USER_C_FILES <C files>]
19
#                  [VERBOSE <level>]
20
#		   [OPTIONS <options>]
21
#				[DIR <directory dest>])
22
#
23
# When used the Lustre_Compile macro define the variable
24
# LUSTRE_GENERATED_C_FILES_<libraryName> in the parent scope
25
# so that the caller can get (if needed) the list of Lustre generated files.
26
# The VERBOSE level is a numeric value passed directly to the -verbose
27
# command line option of the lustre compiler
28
#
29

    
30

    
31
if(LUSTRE_PATH_HINT)
32
  message(STATUS "FindLustre: using PATH HINT: ${LUSTRE_PATH_HINT}")
33
else()
34
  set(LUSTRE_PATH_HINT)
35
endif()
36

    
37

    
38
# FIND_PROGRAM twice using NO_DEFAULT_PATH on first shot
39
find_program(LUSTRE_COMPILER
40
  NAMES lustrec
41
  PATHS ${LUSTRE_PATH_HINT}
42
  PATH_SUFFIXES bin
43
  NO_DEFAULT_PATH
44
  DOC "Path to the Lustre compiler command 'lustrec'")
45

    
46
find_program(LUSTRE_COMPILER
47
  NAMES lustrec
48
  PATHS ${LUSTRE_PATH_HINT}
49
  PATH_SUFFIXES bin
50
  DOC "Path to the Lustre compiler command 'lustrec'")
51

    
52
if(LUSTRE_COMPILER)
53
    # get the path where the lustre compiler was found
54
    get_filename_component(LUSTRE_PATH ${LUSTRE_COMPILER} PATH)
55
    # remove bin
56
    get_filename_component(LUSTRE_PATH ${LUSTRE_PATH} PATH)
57
    # add path to LUSTRE_PATH_HINT
58
    list(APPEND LUSTRE_PATH_HINT ${LUSTRE_PATH})
59
    execute_process(COMMAND ${LUSTRE_COMPILER} -version
60
        OUTPUT_VARIABLE LUSTRE_COMPILER_VERSION
61
        OUTPUT_STRIP_TRAILING_WHITESPACE)
62
    message(STATUS "Lustre compiler version is : ${LUSTRE_COMPILER_VERSION}")
63
endif(LUSTRE_COMPILER)
64

    
65
find_path(LUSTRE_INCLUDE_DIR
66
          NAMES arrow.h
67
          PATHS ${LUSTRE_PATH_HINT}
68
          PATH_SUFFIXES include/lustrec
69
          DOC "The Lustre include headers")
70

    
71
# Macros used to compile a lustre library
72
include(CMakeParseArguments)
73
function(Lustre_Compile)
74
  set(options "")
75
  set(oneValueArgs  NODE VERBOSE LUS_FILE DIR)
76
  set(multiValueArgs  OPTS USER_C_FILES )
77
  cmake_parse_arguments(LUS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
78

    
79

    
80
  get_filename_component(L ${LUS_LUS_FILE} NAME_WE)
81
  get_filename_component(E ${LUS_LUS_FILE} EXT)
82
  set(LUSTREC_ARGS "")
83
  if(LUS_NODE)
84
    set(LUSTRE_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/${L}/node_${LUS_NODE}")
85
    set(LUSTREC_ARGS ${LUSTREC_ARGS} -node ${LUS_NODE} )
86
  else()
87
    set(LUSTRE_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/${L}")
88
  endif()
89
 
90
  
91
  if(LUS_OPTS)
92
    string(REPLACE "-" "" LUS_OPTS_CUT ${LUS_OPTS})
93
    string(REPLACE " " "_" LUS_OPTS_CUT ${LUS_OPTS_CUT})
94
    if(LUS_NODE)
95
		set(LUSTRE_OUTPUT_DIR "${LUSTRE_OUTPUT_DIR}_${LUS_OPTS_CUT}")
96
    else()
97
		set(LUSTRE_OUTPUT_DIR "${LUSTRE_OUTPUT_DIR}/${LUS_OPTS_CUT}")
98
	endif()
99
	set(LUSTREC_ARGS ${LUSTREC_ARGS} ${LUS_OPTS} )
100
  endif()
101

    
102
  if (LUS_VERBOSE)
103
    set(LUSTRE_VERBOSE_OPT "-verbose ${LUS_VERBOSE}")
104
    set(LUSTREC_ARGS ${LUSTREC_ARGS} -verbose ${LUS_VERBOSE} )
105
  endif()
106
  
107
  
108
  set(LUSTRE_GENERATED_FILES "")
109
  file(MAKE_DIRECTORY ${LUSTRE_OUTPUT_DIR})
110
  # create list of generated C files in parent scope
111
  if ("${E}" STREQUAL ".lus")
112
	set(LUSTRE_GENERATED_FILES ${LUSTRE_OUTPUT_DIR}/${L}.h   ${LUSTRE_OUTPUT_DIR}/${L}.lusic )
113
	if (LUS_NODE)
114
		set(LUSTRE_GENERATED_FILES ${LUSTRE_GENERATED_FILES} ${LUSTRE_OUTPUT_DIR}/${L}.c ${LUSTRE_OUTPUT_DIR}/${L}_alloc.h ${LUSTRE_OUTPUT_DIR}/${L}_main.c ${LUSTRE_OUTPUT_DIR}/${L}.makefile)
115
	endif(LUS_NODE)
116
	if(LUS_OPTS MATCHES "horn")
117
		set(LUSTRE_GENERATED_FILES ${LUSTRE_GENERATED_FILES} ${LUSTRE_OUTPUT_DIR}/${L}.smt2)
118
	endif(LUS_OPTS MATCHES "horn")
119
  elseif("${E}" STREQUAL ".lusi")
120
	set(LUSTRE_GENERATED_FILES ${LUSTRE_OUTPUT_DIR}/${L}.h)
121
  endif()
122
  
123
  if(LUS_DIR)
124
	set(LUSTRE_OUTPUT_DIR ${LUS_DIR} )
125
  endif()
126
	set(LUSTREC_ARGS ${LUSTREC_ARGS} -d ${LUSTRE_OUTPUT_DIR} ${LUS_LUS_FILE})
127

    
128
  set(LUSTRE_OPTS_POSTFIX_${L} "${LUS_OPTS_CUT}" PARENT_SCOPE)
129
  set(LUSTREC_ARGS_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTREC_ARGS}" PARENT_SCOPE)
130
  set(LUSTRE_GENERATED_FILES_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTRE_GENERATED_FILES}" PARENT_SCOPE)
131
  set(LUSTRE_OUTPUT_DIR_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTRE_OUTPUT_DIR}" PARENT_SCOPE)
132
endfunction(Lustre_Compile)
133

    
134
# handle the QUIETLY and REQUIRED arguments and set LUSTRE_FOUND to TRUE if
135
# all listed variables are TRUE
136
include(FindPackageHandleStandardArgs)
137
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LUSTRE
138
                                  REQUIRED_VARS LUSTRE_COMPILER LUSTRE_INCLUDE_DIR)
139
# VERSION FPHSA options not handled by CMake version < 2.8.2)
140
#                                  VERSION_VAR LUSTRE_COMPILER_VERSION)
141
mark_as_advanced(LUSTRE_INCLUDE_DIR)
(2-2/6)