Skip to content

Commit

Permalink
Update Makefile in test case
Browse files Browse the repository at this point in the history
Due to optimization in the code generation process some needed functions are not generated if not used by the runtime itself. But as user code makes here direct call to the runtime, we have to force the generation of the needed functions
  • Loading branch information
maxime-esa authored Sep 5, 2024
1 parent 8a3db57 commit e3fed24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Docs/examples/calculate_crc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $(info ${PATH})
all: cTest adaTest

cTest:
asn1scc -mfm postEncoding -c -ACN -atc -o c_out/ a.a* && (cd c_out/ ; make coverage; cd ..)
asn1scc -if Acn_Dec_Int_PositiveInteger_ConstSize -if Acn_Enc_Int_PositiveInteger_ConstSize -mfm postEncoding -c -ACN -atc -o c_out/ a.a* && (cd c_out/ ; make coverage; cd ..)

adaTest:
asn1scc -mfm postEncoding -Ada -ACN -atc -o a_out/ a.a* && (cd a_out/ ; make coverage; cd ..)
Expand Down

0 comments on commit e3fed24

Please sign in to comment.