Project

General

Profile

Download (5.58 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
include (./modules/helpful_functions.cmake)
30

    
31

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

    
38

    
39
# FIND_PROGRAM twice using NO_DEFAULT_PATH on first shot
40
find_program(LUSTRE_COMPILER
41
  NAMES lustrec
42
  HINTS ${LUSTRE_PATH_HINT}
43
  PATH_SUFFIXES bin
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
  NO_DEFAULT_PATH
51
  DOC "Path to the Lustre compiler command 'lustrec'")
52

    
53

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

    
68

    
69
find_path(LUSTRE_INCLUDE_DIR
70
          NAMES arrow.h
71
          PATHS ${LUSTRE_PATH_HINT}
72
          PATH_SUFFIXES include/lustrec
73
          DOC "The Lustre include headers")
74

    
75
find_program(LUSTRE_T
76
  NAMES lustret
77
  HINTS ${LUSTRE_PATH_HINT}
78
  PATH_SUFFIXES bin
79
  DOC "Path to the Lustre compiler command 'lustret'")
80

    
81
find_program(LUSTRE_T
82
  NAMES lustret
83
  PATHS ${LUSTRE_PATH_HINT}
84
  PATH_SUFFIXES bin
85
  NO_DEFAULT_PATH
86
  DOC "Path to the Lustre compiler command 'lustret'")
87

    
88
	
89
# Macros used to compile a lustre library
90
include(CMakeParseArguments)
91
function(Lustre_Compile)
92
  set(options "")
93
  set(oneValueArgs  NODE VERBOSE LUS_FILE DIR DST_DIR)
94
  set(multiValueArgs  OPTS USER_C_FILES )
95
  cmake_parse_arguments(LUS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
96

    
97

    
98
  get_lustre_name_ext(${LUS_LUS_FILE} L E)
99
  
100
  # get_filename_component(L ${LUS_LUS_FILE} NAME_WE)
101
  # get_filename_component(E ${LUS_LUS_FILE} EXT)
102
  set(LUSTREC_ARGS "")
103

    
104
  if(LUS_DST_DIR)
105
    set(OUTPUT_PATH "${LUS_DST_DIR}")
106
  else()
107
    set(OUTPUT_PATH "${CMAKE_CURRENT_BINARY_DIR}")
108
  endif()
109

    
110
  if(LUS_NODE)
111
    set(LUSTRE_OUTPUT_DIR "${OUTPUT_PATH}/${L}/node_${LUS_NODE}")
112
    set(LUSTREC_ARGS ${LUSTREC_ARGS} -node ${LUS_NODE} )
113
  else()
114
    set(LUSTRE_OUTPUT_DIR "${OUTPUT_PATH}/${L}")
115
  endif()
116
 
117
  
118
  if(LUS_OPTS)
119
    CUT_OPTIONS("${LUS_OPTS}" LUS_OPTS_CUT)
120
    if(LUS_NODE)
121
	set(LUSTRE_OUTPUT_DIR "${LUSTRE_OUTPUT_DIR}_${LUS_OPTS_CUT}")
122
    else(LUS_NODE)
123
	set(LUSTRE_OUTPUT_DIR "${LUSTRE_OUTPUT_DIR}/${LUS_OPTS_CUT}")
124
    endif(LUS_NODE)
125
	set(LUSTREC_ARGS ${LUSTREC_ARGS} ${LUS_OPTS} )
126
  endif(LUS_OPTS)
127

    
128
  if (LUS_VERBOSE)
129
    set(LUSTRE_VERBOSE_OPT "-verbose ${LUS_VERBOSE}")
130
    set(LUSTREC_ARGS ${LUSTREC_ARGS} -verbose ${LUS_VERBOSE} )
131
  endif()
132
  
133
  
134
  set(LUSTRE_GENERATED_FILES "")
135
  file(MAKE_DIRECTORY ${LUSTRE_OUTPUT_DIR})
136
  # create list of generated C files in parent scope
137
  if ("${E}" STREQUAL ".lus")
138
	set(LUSTRE_GENERATED_FILES ${LUSTRE_OUTPUT_DIR}/${L}.h   ${LUSTRE_OUTPUT_DIR}/${L}.lusic )
139
	if (LUS_NODE)
140
		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)
141
	endif(LUS_NODE)
142
	if(LUS_OPTS MATCHES "horn")
143
		set(LUSTRE_GENERATED_FILES ${LUSTRE_GENERATED_FILES} ${LUSTRE_OUTPUT_DIR}/${L}.smt2)
144
	endif(LUS_OPTS MATCHES "horn")
145
  elseif("${E}" STREQUAL ".lusi")
146
	set(LUSTRE_GENERATED_FILES ${LUSTRE_OUTPUT_DIR}/${L}.h)
147
  endif()
148
  
149
  if(LUS_DIR)
150
	set(LUSTRE_OUTPUT_DIR ${LUS_DIR} )
151
  endif()
152
  set(LUSTREC_ARGS ${LUSTREC_ARGS} -d ${LUSTRE_OUTPUT_DIR} ${LUS_LUS_FILE})
153
 
154
  set(LUSTREC_ARGS_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTREC_ARGS}" PARENT_SCOPE)
155
  set(LUSTRE_GENERATED_FILES_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTRE_GENERATED_FILES}" PARENT_SCOPE)
156
  set(LUSTRE_OUTPUT_DIR_${L}_${LUS_NODE}_${LUS_OPTS_CUT} "${LUSTRE_OUTPUT_DIR}" PARENT_SCOPE)
157
endfunction(Lustre_Compile)
158

    
159
# handle the QUIETLY and REQUIRED arguments and set LUSTRE_FOUND to TRUE if
160
# all listed variables are TRUE
161
include(FindPackageHandleStandardArgs)
162
FIND_PACKAGE_HANDLE_STANDARD_ARGS(LUSTRE
163
                                  REQUIRED_VARS LUSTRE_COMPILER LUSTRE_INCLUDE_DIR)
164
# VERSION FPHSA options not handled by CMake version < 2.8.2)
165
#                                  VERSION_VAR LUSTRE_COMPILER_VERSION)
166
mark_as_advanced(LUSTRE_INCLUDE_DIR)
(2-2/10)