diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-01-19 02:13:06 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-01-19 02:13:06 +0000 |
commit | ab0e22180ab6e94ec2e4562cac1191436410cc03 (patch) | |
tree | 43768c92c85af5ab70d4018051178fd4bc64e9fd /gdb | |
parent | 8a7dfaa090dc378831100692f4ce92f3244259ef (diff) | |
download | gdb-ab0e22180ab6e94ec2e4562cac1191436410cc03.zip gdb-ab0e22180ab6e94ec2e4562cac1191436410cc03.tar.gz gdb-ab0e22180ab6e94ec2e4562cac1191436410cc03.tar.bz2 |
* ser-ocd.c (ocd_open): Handle Unix case gracefully.
fixes bug reported on ecos-discuss
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/ser-ocd.c | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a3f7237..0735ccd 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ Mon Jan 18 16:40:50 1999 Stan Shebs <shebs@andros.cygnus.com> + * ser-ocd.c (ocd_open): Handle Unix case gracefully. + * target.c (dummy_target): Don't initialize statically. (init_dummy_target): New function, fills in dummy_target. (initialize_targets): Use it. diff --git a/gdb/ser-ocd.c b/gdb/ser-ocd.c index 7ef1796..971f84e 100644 --- a/gdb/ser-ocd.c +++ b/gdb/ser-ocd.c @@ -62,8 +62,10 @@ ocd_open (scb, name) if (dll_do_command == NULL) error ("Can't find do_command function in Wigglers.dll"); } -#endif - +#else + /* No wiggler DLLs on Unix yet, fail. */ + error ("Wiggler library not available for this type of host."); +#endif /* _WIN32 */ return 0; } |