diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-10-25 17:37:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-10-25 17:37:35 +0000 |
commit | 1764521ffe075bb948ef763b4e26e119c9551b96 (patch) | |
tree | bc25f4e046f0a94b84b093ed10ef23fae322d4f8 | |
parent | 1edd3a7b3d4b278a11fd09fa2d7a578be3346fee (diff) | |
download | gdb-1764521ffe075bb948ef763b4e26e119c9551b96.zip gdb-1764521ffe075bb948ef763b4e26e119c9551b96.tar.gz gdb-1764521ffe075bb948ef763b4e26e119c9551b96.tar.bz2 |
tweak option handling
-rw-r--r-- | ld/emultempl/aix.em | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/emultempl/aix.em b/ld/emultempl/aix.em index 256c24f..ae0d7dd 100644 --- a/ld/emultempl/aix.em +++ b/ld/emultempl/aix.em @@ -191,6 +191,10 @@ gld${EMULATION_NAME}_parse_args (argc, argv) optind = prevoptind; return 0; + case 0: + /* Long option which just sets a flag. */ + break; + case 'D': val = strtol (optarg, &end, 0); if (*end != '\0') |