Added mechanism for non-cross compiler (yet another way of squeezing it onto

a PDP-11
This commit is contained in:
ceriel
1987-11-09 11:29:48 +00:00
parent f4c6ec0624
commit 88764ecc1a
5 changed files with 85 additions and 7 deletions

View File

@@ -20,6 +20,7 @@
#include "main.h"
#include "warning.h"
#include "squeeze.h"
#include "nocross.h"
#define MINIDFSIZE 14
@@ -144,6 +145,7 @@ DoOption(text)
break;
case 'V' : /* set object sizes and alignment requirements */
#ifndef NOCROSS
{
register int size;
register int align;
@@ -217,8 +219,9 @@ DoOption(text)
break;
}
}
break;
}
#endif NOCROSS
break;
}
}