1994-03-23 14:12:55 +00:00
|
|
|
/* Definitions for using variables in GNU Make.
|
2012-01-16 02:29:20 +00:00
|
|
|
Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
|
|
|
|
1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
|
|
|
|
2012 Free Software Foundation, Inc.
|
1991-06-03 20:37:27 +00:00
|
|
|
This file is part of GNU Make.
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2007-07-04 19:35:15 +00:00
|
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
1991-06-03 20:37:27 +00:00
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
1991-06-03 20:37:27 +00:00
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
2007-07-04 19:35:15 +00:00
|
|
|
this program. If not, see <http://www.gnu.org/licenses/>. */
|
1991-06-03 20:37:27 +00:00
|
|
|
|
2002-07-11 06:38:57 +00:00
|
|
|
#include "hash.h"
|
|
|
|
|
1991-06-03 20:37:27 +00:00
|
|
|
/* Codes in a variable definition saying where the definition came from.
|
|
|
|
Increasing numeric values signify less-overridable definitions. */
|
|
|
|
enum variable_origin
|
|
|
|
{
|
|
|
|
o_default, /* Variable from the default set. */
|
|
|
|
o_env, /* Variable from environment. */
|
|
|
|
o_file, /* Variable given in a makefile. */
|
|
|
|
o_env_override, /* Variable from environment, if -e. */
|
|
|
|
o_command, /* Variable given by user. */
|
|
|
|
o_override, /* Variable from an `override' directive. */
|
|
|
|
o_automatic, /* Automatic variable -- cannot be set. */
|
|
|
|
o_invalid /* Core dump time. */
|
|
|
|
};
|
|
|
|
|
2002-07-08 02:26:47 +00:00
|
|
|
enum variable_flavor
|
|
|
|
{
|
|
|
|
f_bogus, /* Bogus (error) */
|
|
|
|
f_simple, /* Simple definition (:=) */
|
|
|
|
f_recursive, /* Recursive definition (=) */
|
|
|
|
f_append, /* Appending definition (+=) */
|
2011-04-18 01:25:20 +00:00
|
|
|
f_conditional, /* Conditional definition (?=) */
|
|
|
|
f_shell /* Shell assignment (!=) */
|
2002-07-08 02:26:47 +00:00
|
|
|
};
|
|
|
|
|
1991-06-03 20:37:27 +00:00
|
|
|
/* Structure that represents one variable definition.
|
|
|
|
Each bucket of the hash table is a chain of these,
|
|
|
|
chained through `next'. */
|
|
|
|
|
2002-05-10 03:15:07 +00:00
|
|
|
#define EXP_COUNT_BITS 15 /* This gets all the bitfields into 32 bits */
|
|
|
|
#define EXP_COUNT_MAX ((1<<EXP_COUNT_BITS)-1)
|
|
|
|
|
1991-06-03 20:37:27 +00:00
|
|
|
struct variable
|
|
|
|
{
|
|
|
|
char *name; /* Variable name. */
|
2002-07-11 06:38:57 +00:00
|
|
|
int length; /* strlen (name) */
|
1991-06-03 20:37:27 +00:00
|
|
|
char *value; /* Variable value. */
|
2000-02-05 07:37:40 +00:00
|
|
|
struct floc fileinfo; /* Where the variable was defined. */
|
1991-06-03 20:37:27 +00:00
|
|
|
unsigned int recursive:1; /* Gets recursively re-evaluated. */
|
1999-11-17 07:33:47 +00:00
|
|
|
unsigned int append:1; /* Nonzero if an appending target-specific
|
|
|
|
variable. */
|
2003-05-02 01:44:59 +00:00
|
|
|
unsigned int conditional:1; /* Nonzero if set with a ?=. */
|
|
|
|
unsigned int per_target:1; /* Nonzero if a target-specific variable. */
|
2009-05-26 01:31:40 +00:00
|
|
|
unsigned int special:1; /* Nonzero if this is a special variable. */
|
2003-05-02 01:44:59 +00:00
|
|
|
unsigned int exportable:1; /* Nonzero if the variable _could_ be
|
|
|
|
exported. */
|
2002-08-01 13:16:57 +00:00
|
|
|
unsigned int expanding:1; /* Nonzero if currently being expanded. */
|
2009-05-26 01:31:40 +00:00
|
|
|
unsigned int private_var:1; /* Nonzero avoids inheritance of this
|
|
|
|
target-specific variable. */
|
2002-08-01 13:16:57 +00:00
|
|
|
unsigned int exp_count:EXP_COUNT_BITS;
|
|
|
|
/* If >1, allow this many self-referential
|
|
|
|
expansions. */
|
2003-05-02 01:44:59 +00:00
|
|
|
enum variable_flavor
|
|
|
|
flavor ENUM_BITFIELD (3); /* Variable flavor. */
|
2002-05-10 03:15:07 +00:00
|
|
|
enum variable_origin
|
|
|
|
origin ENUM_BITFIELD (3); /* Variable origin. */
|
1998-07-30 20:54:47 +00:00
|
|
|
enum variable_export
|
1992-05-03 22:09:16 +00:00
|
|
|
{
|
|
|
|
v_export, /* Export this variable. */
|
|
|
|
v_noexport, /* Don't export this variable. */
|
1992-07-10 04:06:24 +00:00
|
|
|
v_ifset, /* Export it if it has a non-default value. */
|
1992-05-03 22:09:16 +00:00
|
|
|
v_default /* Decide in target_environment. */
|
|
|
|
} export ENUM_BITFIELD (2);
|
1991-06-03 20:37:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Structure that represents a variable set. */
|
|
|
|
|
|
|
|
struct variable_set
|
|
|
|
{
|
2002-07-11 06:38:57 +00:00
|
|
|
struct hash_table table; /* Hash table of variables. */
|
1991-06-03 20:37:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Structure that represents a list of variable sets. */
|
|
|
|
|
|
|
|
struct variable_set_list
|
|
|
|
{
|
|
|
|
struct variable_set_list *next; /* Link in the chain. */
|
|
|
|
struct variable_set *set; /* Variable set. */
|
2009-05-26 01:31:40 +00:00
|
|
|
int next_is_parent; /* True if next is a parent target. */
|
1991-06-03 20:37:27 +00:00
|
|
|
};
|
|
|
|
|
2003-05-02 01:44:59 +00:00
|
|
|
/* Structure used for pattern-specific variables. */
|
|
|
|
|
|
|
|
struct pattern_var
|
|
|
|
{
|
|
|
|
struct pattern_var *next;
|
2007-03-20 03:02:26 +00:00
|
|
|
const char *suffix;
|
|
|
|
const char *target;
|
2003-05-02 01:44:59 +00:00
|
|
|
unsigned int len;
|
|
|
|
struct variable variable;
|
|
|
|
};
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
extern char *variable_buffer;
|
1991-06-03 20:37:27 +00:00
|
|
|
extern struct variable_set_list *current_variable_set_list;
|
2009-06-04 06:30:27 +00:00
|
|
|
extern struct variable *default_goal_var;
|
1991-06-03 20:37:27 +00:00
|
|
|
|
1996-03-20 14:57:41 +00:00
|
|
|
/* expand.c */
|
2006-11-18 20:53:44 +00:00
|
|
|
char *variable_buffer_output (char *ptr, const char *string, unsigned int length);
|
|
|
|
char *variable_expand (const char *line);
|
|
|
|
char *variable_expand_for_file (const char *line, struct file *file);
|
|
|
|
char *allocated_variable_expand_for_file (const char *line, struct file *file);
|
1992-06-11 02:28:31 +00:00
|
|
|
#define allocated_variable_expand(line) \
|
|
|
|
allocated_variable_expand_for_file (line, (struct file *) 0)
|
2006-04-07 01:43:44 +00:00
|
|
|
char *expand_argument (const char *str, const char *end);
|
2006-11-18 20:53:44 +00:00
|
|
|
char *variable_expand_string (char *line, const char *string, long length);
|
2006-04-07 01:43:44 +00:00
|
|
|
void install_variable_buffer (char **bufp, unsigned int *lenp);
|
|
|
|
void restore_variable_buffer (char *buf, unsigned int len);
|
1996-03-20 14:57:41 +00:00
|
|
|
|
|
|
|
/* function.c */
|
2006-11-18 20:53:44 +00:00
|
|
|
int handle_function (char **op, const char **stringp);
|
|
|
|
int pattern_matches (const char *pattern, const char *percent, const char *str);
|
2007-03-20 03:02:26 +00:00
|
|
|
char *subst_expand (char *o, const char *text, const char *subst,
|
|
|
|
const char *replace, unsigned int slen, unsigned int rlen,
|
|
|
|
int by_word);
|
|
|
|
char *patsubst_expand_pat (char *o, const char *text, const char *pattern,
|
|
|
|
const char *replace, const char *pattern_percent,
|
|
|
|
const char *replace_percent);
|
|
|
|
char *patsubst_expand (char *o, const char *text, char *pattern, char *replace);
|
2011-04-18 01:25:20 +00:00
|
|
|
char *func_shell_base (char *o, char **argv, int trim_newlines);
|
|
|
|
|
1996-03-20 14:57:41 +00:00
|
|
|
|
|
|
|
/* expand.c */
|
2006-04-07 01:43:44 +00:00
|
|
|
char *recursively_expand_for_file (struct variable *v, struct file *file);
|
2002-05-10 03:15:07 +00:00
|
|
|
#define recursively_expand(v) recursively_expand_for_file (v, NULL)
|
1996-03-20 14:57:41 +00:00
|
|
|
|
|
|
|
/* variable.c */
|
2006-04-07 01:43:44 +00:00
|
|
|
struct variable_set_list *create_new_variable_set (void);
|
|
|
|
void free_variable_set (struct variable_set_list *);
|
|
|
|
struct variable_set_list *push_new_variable_scope (void);
|
|
|
|
void pop_variable_scope (void);
|
|
|
|
void define_automatic_variables (void);
|
2006-10-01 05:38:38 +00:00
|
|
|
void initialize_file_variables (struct file *file, int reading);
|
2007-03-20 03:02:26 +00:00
|
|
|
void print_file_variables (const struct file *file);
|
2010-11-06 21:56:23 +00:00
|
|
|
void print_file_variables (const struct file *file);
|
|
|
|
void print_target_variables (const struct file *file);
|
2006-04-07 01:43:44 +00:00
|
|
|
void merge_variable_set_lists (struct variable_set_list **to_list,
|
|
|
|
struct variable_set_list *from_list);
|
|
|
|
struct variable *do_variable_definition (const struct floc *flocp,
|
2007-03-20 03:02:26 +00:00
|
|
|
const char *name, const char *value,
|
2006-04-07 01:43:44 +00:00
|
|
|
enum variable_origin origin,
|
|
|
|
enum variable_flavor flavor,
|
|
|
|
int target_var);
|
2009-05-26 01:31:40 +00:00
|
|
|
char *parse_variable_definition (const char *line,
|
|
|
|
enum variable_flavor *flavor);
|
|
|
|
struct variable *assign_variable_definition (struct variable *v, char *line);
|
2006-04-07 01:43:44 +00:00
|
|
|
struct variable *try_variable_definition (const struct floc *flocp, char *line,
|
|
|
|
enum variable_origin origin,
|
|
|
|
int target_var);
|
|
|
|
void init_hash_global_variable_set (void);
|
|
|
|
void hash_init_function_table (void);
|
2012-01-16 03:32:49 +00:00
|
|
|
void define_new_function(const struct floc *flocp,
|
|
|
|
const char *name, int min, int max, int expand,
|
|
|
|
char *(*func)(char *, char **, const char *));
|
2006-04-07 01:43:44 +00:00
|
|
|
struct variable *lookup_variable (const char *name, unsigned int length);
|
|
|
|
struct variable *lookup_variable_in_set (const char *name, unsigned int length,
|
|
|
|
const struct variable_set *set);
|
|
|
|
|
|
|
|
struct variable *define_variable_in_set (const char *name, unsigned int length,
|
2006-11-18 20:53:44 +00:00
|
|
|
const char *value,
|
2006-04-07 01:43:44 +00:00
|
|
|
enum variable_origin origin,
|
|
|
|
int recursive,
|
|
|
|
struct variable_set *set,
|
|
|
|
const struct floc *flocp);
|
2000-02-05 07:37:40 +00:00
|
|
|
|
|
|
|
/* Define a variable in the current variable set. */
|
|
|
|
|
|
|
|
#define define_variable(n,l,v,o,r) \
|
|
|
|
define_variable_in_set((n),(l),(v),(o),(r),\
|
|
|
|
current_variable_set_list->set,NILF)
|
|
|
|
|
2009-10-25 00:26:34 +00:00
|
|
|
/* Define a variable with a constant name in the current variable set. */
|
|
|
|
|
|
|
|
#define define_variable_cname(n,v,o,r) \
|
|
|
|
define_variable_in_set((n),(sizeof (n) - 1),(v),(o),(r),\
|
|
|
|
current_variable_set_list->set,NILF)
|
|
|
|
|
2000-02-05 07:37:40 +00:00
|
|
|
/* Define a variable with a location in the current variable set. */
|
|
|
|
|
|
|
|
#define define_variable_loc(n,l,v,o,r,f) \
|
|
|
|
define_variable_in_set((n),(l),(v),(o),(r),\
|
|
|
|
current_variable_set_list->set,(f))
|
|
|
|
|
2002-07-08 02:26:47 +00:00
|
|
|
/* Define a variable with a location in the global variable set. */
|
|
|
|
|
|
|
|
#define define_variable_global(n,l,v,o,r,f) \
|
|
|
|
define_variable_in_set((n),(l),(v),(o),(r),NULL,(f))
|
|
|
|
|
2000-02-05 07:37:40 +00:00
|
|
|
/* Define a variable in FILE's variable set. */
|
|
|
|
|
|
|
|
#define define_variable_for_file(n,l,v,o,r,f) \
|
|
|
|
define_variable_in_set((n),(l),(v),(o),(r),(f)->variables->set,NILF)
|
|
|
|
|
2009-10-06 06:56:57 +00:00
|
|
|
void undefine_variable_in_set (const char *name, unsigned int length,
|
|
|
|
enum variable_origin origin,
|
|
|
|
struct variable_set *set);
|
|
|
|
|
|
|
|
/* Remove variable from the current variable set. */
|
|
|
|
|
|
|
|
#define undefine_variable_global(n,l,o) \
|
|
|
|
undefine_variable_in_set((n),(l),(o),NULL)
|
|
|
|
|
2002-05-10 03:15:07 +00:00
|
|
|
/* Warn that NAME is an undefined variable. */
|
|
|
|
|
|
|
|
#define warn_undefined(n,l) do{\
|
|
|
|
if (warn_undefined_variables_flag) \
|
|
|
|
error (reading_file, \
|
|
|
|
_("warning: undefined variable `%.*s'"), \
|
|
|
|
(int)(l), (n)); \
|
|
|
|
}while(0)
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
char **target_environment (struct file *file);
|
1991-06-03 20:37:27 +00:00
|
|
|
|
2007-03-20 03:02:26 +00:00
|
|
|
struct pattern_var *create_pattern_var (const char *target,
|
|
|
|
const char *suffix);
|
2003-05-02 01:44:59 +00:00
|
|
|
|
1992-05-04 22:33:57 +00:00
|
|
|
extern int export_all_variables;
|
2002-07-11 06:38:57 +00:00
|
|
|
|
|
|
|
#define MAKELEVEL_NAME "MAKELEVEL"
|
|
|
|
#define MAKELEVEL_LENGTH (sizeof (MAKELEVEL_NAME) - 1)
|