Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
87a1896d
Commit
87a1896d
authored
Feb 25, 2005
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XMLValueList support
parent
295e2458
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
asn1c/asn1c.c
asn1c/asn1c.c
+6
-4
No files found.
asn1c/asn1c.c
View file @
87a1896d
...
@@ -83,13 +83,15 @@ main(int ac, char **av) {
...
@@ -83,13 +83,15 @@ main(int ac, char **av) {
asn1_compiler_flags
|=
A1C_ALL_DEFS_GLOBAL
;
asn1_compiler_flags
|=
A1C_ALL_DEFS_GLOBAL
;
}
else
if
(
strcmp
(
optarg
,
"bless-SIZE"
)
==
0
)
{
}
else
if
(
strcmp
(
optarg
,
"bless-SIZE"
)
==
0
)
{
asn1_fixer_flags
|=
A1F_EXTENDED_SizeConstraint
;
asn1_fixer_flags
|=
A1F_EXTENDED_SizeConstraint
;
}
else
if
(
strcmp
(
optarg
,
"double-identifiers"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_DOUBLE_IDENTIFIERS
;
}
else
if
(
strncmp
(
optarg
,
"known-extern-type="
,
18
)
==
0
)
{
}
else
if
(
strncmp
(
optarg
,
"known-extern-type="
,
18
)
==
0
)
{
char
*
known_type
=
optarg
+
18
;
char
*
known_type
=
optarg
+
18
;
ret
=
asn1f_make_known_external_type
(
known_type
);
ret
=
asn1f_make_known_external_type
(
known_type
);
assert
(
ret
==
0
||
errno
==
EEXIST
);
assert
(
ret
==
0
||
errno
==
EEXIST
);
}
else
if
(
strcmp
(
optarg
,
"native-integers"
)
==
0
)
{
}
else
if
(
asn1_compiler_flags
|=
A1C_USE_NATIVE_TYPES
;
strcmp
(
optarg
,
"native-integers"
)
==
0
/* Legacy */
}
else
if
(
strcmp
(
optarg
,
"native-types"
)
==
0
)
{
||
strcmp
(
optarg
,
"native-types"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_USE_NATIVE_TYPES
;
asn1_compiler_flags
|=
A1C_USE_NATIVE_TYPES
;
}
else
if
(
strcmp
(
optarg
,
"no-constraints"
)
==
0
)
{
}
else
if
(
strcmp
(
optarg
,
"no-constraints"
)
==
0
)
{
asn1_compiler_flags
|=
A1C_NO_CONSTRAINTS
;
asn1_compiler_flags
|=
A1C_NO_CONSTRAINTS
;
...
@@ -316,7 +318,7 @@ usage(const char *av0) {
...
@@ -316,7 +318,7 @@ usage(const char *av0) {
" -fall-defs-global Don't make the asn1_DEF_'s of structure members
\"
static
\"\n
"
" -fall-defs-global Don't make the asn1_DEF_'s of structure members
\"
static
\"\n
"
" -fbless-SIZE Allow SIZE() constraint for INTEGER etc (non-std.)
\n
"
" -fbless-SIZE Allow SIZE() constraint for INTEGER etc (non-std.)
\n
"
" -fknown-extern-type=<name> Pretend this type is known
\n
"
" -fknown-extern-type=<name> Pretend this type is known
\n
"
" -fnative-types Use
\"
int
\"
instead of INTEGER_t whenever possible
\n
"
" -fnative-types Use
\"
long
\"
instead of INTEGER_t whenever possible, etc.
\n
"
" -fno-constraints Do not generate constraint checking code
\n
"
" -fno-constraints Do not generate constraint checking code
\n
"
" -funnamed-unions Enable unnamed unions in structures
\n
"
" -funnamed-unions Enable unnamed unions in structures
\n
"
" -ftypes88 Pretend to support only ASN.1:1988 embedded types
\n
"
" -ftypes88 Pretend to support only ASN.1:1988 embedded types
\n
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment