in reply to bizarre Carp

What about the following?
sub my_main { my $first = shift(@_); local @ARGV = @_; GetOptions(...); }

It's even cleaner code (better encapsulation).