summaryrefslogtreecommitdiff
path: root/cryptest.vcxproj
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-04-13 21:45:21 -0400
committerJeffrey Walton <noloader@gmail.com>2017-04-13 21:45:21 -0400
commitbf92cb00395b71a942e4b785c6848f038a961c3a (patch)
treeb562674aec0107c8cdc1ebc5fc792d663b4140e6 /cryptest.vcxproj
parentbae30d6767ffd2da1271e50387614340371591df (diff)
downloadcryptopp-git-bf92cb00395b71a942e4b785c6848f038a961c3a.tar.gz
Split regtest.cpp into regtest{1|2|3}.cpp
regtest.cpp is where ciphers register by name. The library has added a number of ciphers over the last couple of years and the source file has experienced bloat. Most of the ARM and MIPS test borads were suffering Out of Memory (OOM) kills as the compiler processed the source fille and the included header files. This won't stop the OOM kills, but it will help the situation. An early BeagleBoard with 512 MB of RAM is still going to have trouble, but it can be worked around by building with 1 make job as opposed to 2 or 4.
Diffstat (limited to 'cryptest.vcxproj')
-rw-r--r--cryptest.vcxproj4
1 files changed, 3 insertions, 1 deletions
diff --git a/cryptest.vcxproj b/cryptest.vcxproj
index 1c1d2504..39e0b4e4 100644
--- a/cryptest.vcxproj
+++ b/cryptest.vcxproj
@@ -199,7 +199,9 @@
<ClCompile Include="datatest.cpp" />
<ClCompile Include="dlltest.cpp" />
<ClCompile Include="fipsalgt.cpp" />
- <ClCompile Include="regtest.cpp" />
+ <ClCompile Include="regtest1.cpp" />
+ <ClCompile Include="regtest2.cpp" />
+ <ClCompile Include="regtest3.cpp" />
<ClCompile Include="test.cpp" />
<ClCompile Include="validat0.cpp" />
<ClCompile Include="validat1.cpp" />