diff options
author | Steve Chamberlain <sac@cygnus> | 1995-06-29 07:08:00 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1995-06-29 07:08:00 +0000 |
commit | 8c7fd353f92fa7fdc3ad6ee31aa7639868e5ba23 (patch) | |
tree | 88a6682240dc12f231b469db691cba51eea8a909 /configure.in | |
parent | 3ca120a5b3fd436ec6b73f278fa0ae6b31d774b5 (diff) | |
download | gdb-8c7fd353f92fa7fdc3ad6ee31aa7639868e5ba23.zip gdb-8c7fd353f92fa7fdc3ad6ee31aa7639868e5ba23.tar.gz gdb-8c7fd353f92fa7fdc3ad6ee31aa7639868e5ba23.tar.bz2 |
* configure.in: Add i386-pe configuration.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c9c5f64..335415f 100644 --- a/configure.in +++ b/configure.in @@ -111,6 +111,7 @@ case "${host}" in i[345]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;; i[345]86-*-aix*) host_makefile_frag=config/mh-aix386 ;; i[345]86-*-go32*) host_makefile_frag=config/mh-go32 ;; + i[345]86-*-pe*) host_makefile_frag=config/mh-i386pe ;; vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;; *-ibm-aix*) host_makefile_frag=config/mh-aix ;; *-bull-bosx*) host_makefile_frag=config/mh-aix ;; @@ -331,6 +332,9 @@ case "${host}" in ;; i[345]86-*-go32) noconfigdirs="tcl tk expect deja-gnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff" + ;; + i[345]86-*-pe*) + noconfigdirs="tcl tk expect deja-gnu make texinfo bison patch flex byacc send-pr gprof uudecode dejagnu diff" ;; esac @@ -386,6 +390,12 @@ case "${target}" in configdirs=`echo go32 ${configdirs}` noconfigdirs="$noconfigdirs gdb libg++ libstdc++ libio librx" ;; + i[345]86-*-pe) + # add the pe support tools to the list + # but don't build gdb + configdirs=`echo pei386 ${configdirs}` + noconfigdirs="$noconfigdirs gdb libg++ libstdc++ libio librx" + ;; i[345]86-*-sco*) noconfigdirs="$noconfigdirs gprof" ;; |