aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2004-09-26 13:13:13 +0000
committerLev Walkin <vlm@lionet.info>2004-09-26 13:13:13 +0000
commit4e940a042f07f91a32a1893ff14d80903b2c78a7 (patch)
treed9c2ac1ef43f85f74e3e757a5dcee6c700a5ca02 /asn1c
parent154aa18dd7f55a4e45b340ee13dde656f3f92198 (diff)
-fno-constraints
Diffstat (limited to 'asn1c')
-rw-r--r--asn1c/asn1c.15
-rw-r--r--asn1c/asn1c.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/asn1c/asn1c.1 b/asn1c/asn1c.1
index 359724b2..7ac0015c 100644
--- a/asn1c/asn1c.1
+++ b/asn1c/asn1c.1
@@ -22,7 +22,7 @@ and other encoding standards.
.TP
\fILanguage Options\fR
.br
-\fB\-fall-defs-global \-fbless-SIZE \-fnative-types \-funnamed-unions \-ftypes88\fR
+\fB\-fall-defs-global \-fbless-SIZE \-fnative-types \-fno-constraints \-funnamed-unions \-ftypes88\fR
.TP
\fIOutput Options\fR
.br
@@ -82,6 +82,9 @@ an ASN.1 standard and compiler may fail to produce the meaningful code.
Use the native machine's data types (int, double) whenever possible,
instead of the compound ASN.1 INTEGER_t, ENUMERATED_t and REAL_t types.
.TP
+.B \-fno-constraints
+Do not generate ASN.1 subtype constraint checking code. This may make a shorter executable.
+.TP
.B \-funnamed-unions
Enable unnamed unions in the definitions of target language's structures.
.TP
diff --git a/asn1c/asn1c.c b/asn1c/asn1c.c
index 8c3a7e58..ad0cab43 100644
--- a/asn1c/asn1c.c
+++ b/asn1c/asn1c.c
@@ -91,6 +91,8 @@ main(int ac, char **av) {
asn1_compiler_flags |= A1C_USE_NATIVE_TYPES;
} else if(strcmp(optarg, "native-types") == 0) {
asn1_compiler_flags |= A1C_USE_NATIVE_TYPES;
+ } else if(strcmp(optarg, "no-constraints") == 0) {
+ asn1_compiler_flags |= A1C_NO_CONSTRAINTS;
} else if(strcmp(optarg, "unnamed-unions") == 0) {
asn1_compiler_flags |= A1C_UNNAMED_UNIONS;
} else if(strcmp(optarg, "types88") == 0) {
@@ -309,6 +311,7 @@ usage(const char *av0) {
" -fbless-SIZE Allow SIZE() constraint for INTEGER etc (non-std.)\n"
" -fknown-extern-type=<name> Pretend this type is known\n"
" -fnative-types Use \"int\" instead of INTEGER_t whenever possible\n"
+" -fno-constraints Do not generate constraint checking code\n"
" -funnamed-unions Enable unnamed unions in structures\n"
" -ftypes88 Use only ASN.1:1988 embedded types\n"
"\n"