diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2003-02-20 03:31:42 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2003-02-20 03:31:42 +0000 |
commit | 0e11a9e98de0683f7f75f668cbf63f4300980901 (patch) | |
tree | 4c0c3708b65e87c3dafe4a23a6b82f6ba43a6df3 /binutils/dlltool.c | |
parent | 6e5f5201729b7a60a7514425d25ef4de7b914321 (diff) | |
download | gdb-0e11a9e98de0683f7f75f668cbf63f4300980901.zip gdb-0e11a9e98de0683f7f75f668cbf63f4300980901.tar.gz gdb-0e11a9e98de0683f7f75f668cbf63f4300980901.tar.bz2 |
* rclex.l (handle_quotes): Fix minor formatting problems introduced in previous
change.
Diffstat (limited to 'binutils/dlltool.c')
-rw-r--r-- | binutils/dlltool.c | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/binutils/dlltool.c b/binutils/dlltool.c index 19a7e1f..a4e7bfa 100644 --- a/binutils/dlltool.c +++ b/binutils/dlltool.c @@ -350,6 +350,8 @@ static iheadtype *import_list = NULL; static char *as_name = NULL; static char * as_flags = ""; +static char *tmp_prefix = "d"; + static int no_idata4; static int no_idata5; static char *exp_name; @@ -431,12 +433,19 @@ static char * mcore_elf_linker_flags = NULL; #define PATHMAX 250 /* What's the right name for this ? */ -#define TMP_ASM "dc.s" -#define TMP_HEAD_S "dh.s" -#define TMP_HEAD_O "dh.o" -#define TMP_TAIL_S "dt.s" -#define TMP_TAIL_O "dt.o" -#define TMP_STUB "ds" +char *tmp_asm_buf; +char *tmp_head_s_buf; +char *tmp_head_o_buf; +char *tmp_tail_s_buf; +char *tmp_tail_o_buf; +char *tmp_stub_buf; + +#define TMP_ASM dlltmp (tmp_asm_buf, "%sc.s") +#define TMP_HEAD_S dlltmp (tmp_head_s_buf, "%sh.s") +#define TMP_HEAD_O dlltmp (tmp_head_o_buf, "%sh.o") +#define TMP_TAIL_S dlltmp (tmp_tail_s_buf, "%st.s") +#define TMP_TAIL_O dlltmp (tmp_tail_o_buf, "%st.o") +#define TMP_STUB dlltmp (tmp_stub_buf, "%ss") /* This bit of assemly does jmp * .... */ static const unsigned char i386_jtab[] = @@ -741,6 +750,14 @@ static void usage static void inform PARAMS ((const char *, ...)); +static char * +dlltmp PARAMS ((char *buf, const char *fmt)) +{ + if (!buf) + buf = malloc (strlen (tmp_prefix) + 17); + sprintf (buf, fmt, tmp_prefix); + return buf; +} static void inform VPARAMS ((const char * message, ...)) @@ -3263,6 +3280,7 @@ static const struct option long_options[] = {"as-flags", required_argument, NULL, 'f'}, {"mcore-elf", required_argument, NULL, 'M'}, {"compat-implib", no_argument, NULL, 'C'}, + {"temp-prefix", required_argument, NULL, 't'}, {NULL,0,NULL,0} }; @@ -3320,6 +3338,9 @@ main (ac, av) case 'S': as_name = optarg; break; + case 't': + tmp_prefix = optarg; + break; case 'f': as_flags = optarg; break; |