/usr/include/lam/lamwrap.h is in lam4-dev 7.1.4-3.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | //
// Copyright (c) 2001-2003 The Trustees of Indiana University.
// All rights reserved.
// Copyright (c) 1998-2001 University of Notre Dame.
// All rights reserved.
// Copyright (c) 1994-1998 The Ohio State University.
// All rights reserved.
//
// This file is part of the LAM/MPI software package. For license
// information, see the LICENSE file in the top level directory of the
// LAM/MPI source distribution.
//
// $HEADER$
//
// $Id: lamwrap.h,v 1.7 2003/09/20 11:10:50 jsquyres Exp $
//
// Function: - wrapper for C program compilation
//
#ifndef _LAM_WRAP_H
#define _LAM_WRAP_H 1
#include <lam_config.h>
#include <string>
#include <vector>
//
// Commonly used type
//
typedef std::vector<std::string> lam_sv_t;
//
// Global variables
//
extern bool fl_libs;
extern bool fl_building;
extern bool fl_profile;
extern bool fl_cpp;
extern bool showme_cmd;
extern bool showme_compile;
extern bool showme_link;
//
// Functions in the helper LAM wrapper compiler library
//
// This is the granddaddy that will invoke the rest
int
lam_wrap_engine(int argc, char* argv[],
const lam_sv_t& env_vars, const std::string& default_compiler,
bool want_cxx_includes, bool want_cxx_libs,
bool want_f77_includes,
const std::string& extra_args);
// Parse the command line and get some environment information
void lam_wrap_parse_args(int argc, char* argv[], bool& want_flags);
// Build up various argument lists
void lam_wrap_get_compiler(const lam_sv_t& env_list,
const std::string& default_comp, lam_sv_t& out);
void lam_wrap_build_user_args(int argc, char* argv[], lam_sv_t& user_args);
void lam_wrap_build_cflags(bool want_cxx_includes, bool want_f77_includes,
const std::string& prefix,
lam_sv_t& cflags);
void lam_wrap_build_ldflags(const std::string& prefix, lam_sv_t& ldflags);
void lam_wrap_build_libs(const std::string& prefix,
bool want_cxx_libs, lam_sv_t& libs);
void lam_wrap_build_extra_flags(const std::string& extra_string,
lam_sv_t& extra_flags);
// Print or execute the file list of arguments
void lam_wrap_print_sv(const lam_sv_t& sv);
int lam_wrap_exec_sv(const lam_sv_t& sv);
// Various helper functions
void lam_wrap_strip_white(std::string & str);
bool lam_wrap_split(const std::string& str, char c,
lam_sv_t& out);
void lam_wrap_split_append_sv(const std::string& str, lam_sv_t& out);
void lam_wrap_append_sv(const lam_sv_t& in, lam_sv_t& out);
bool lam_wrap_check_file(const std::string& dir, const std::string& file);
#endif
|