~ubuntu-branches/ubuntu/trusty/alliance/trusty

« back to all changes in this revision

Viewing changes to nero/src/nero.cpp

  • Committer: Package Import Robot
  • Author(s): Roland Stigge
  • Date: 2012-05-16 22:10:18 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120516221018-n800ake8yf5g0an1
Tags: 5.0-20120515-1
* New upstream release
* Added 08-fix-libdir.patch - bad usage of configure's --libdir value,
  was FTBFS if other (binary) version of alliance was installed
* Adjusted 05-as-needed.patch - upstream changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
// -*- C++ -*-
3
3
//
4
 
// $Id: nero.cpp,v 1.12 2008/06/11 09:20:35 jpc Exp $
 
4
// $Id: nero.cpp,v 1.14 2012/05/03 20:59:56 jpc Exp $
5
5
//
6
6
//  /----------------------------------------------------------------\ 
7
7
//  |                                                                |
71
71
       << "     [-c|--core-dump]    := Generate core dump if an internal "
72
72
       <<         "error occurs.\n"
73
73
       << "     [-H|--half-pitch]   := First track is at half pitch (both X & Y).\n"
 
74
       << "     [-x|--half-pitch-x] := First track is at half pitch (X).\n"
 
75
       << "     [-y|--half-pitch-y] := First track is at half pitch (Y).\n"
74
76
       << "     [-R|--rotate]       := Exchange preferred routing directions.\n"
75
77
       << "     [-2|--layers-2]     := Use only 2 routing layers.\n"
76
78
       << "     [-3|--layers-3]     := Use only 3 routing layers.\n"
98
100
 
99
101
static void serial (void)
100
102
{
101
 
  cout << "                                S/N 20080611.1\n";
 
103
  cout << "                                S/N 20120503.1\n";
102
104
}
103
105
 
104
106
 
151
153
    options.add ("h", "help");
152
154
    options.add ("c", "coredump");
153
155
    options.add ("H", "half-pitch");
 
156
    options.add ("x", "half-pitch-x");
 
157
    options.add ("y", "half-pitch-y");
154
158
    options.add ("R", "rotate");
155
159
    options.add ("2", "layers-2");
156
160
    options.add ("3", "layers-3");
249
253
                   , 4
250
254
                   , global
251
255
                   , options["H"]->parsed
 
256
                   , options["x"]->parsed
 
257
                   , options["y"]->parsed
252
258
                   , options["R"]->parsed
253
259
                   , netSet );
254
260
    //cdebug.off ();