Development reference: Difference between revisions
No edit summary |
No edit summary |
||
Line 181: | Line 181: | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Create a portable command line C project in Visual Studio | ! C - Create a portable command line C project in Visual Studio | ||
|- | |- | ||
| | | | ||
Line 197: | Line 197: | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! Create a portable C++ project in Visual Studio | ! c++ Create a portable C++ project in Visual Studio | ||
|- | |- | ||
| | | | ||
Line 228: | Line 228: | ||
{| class="mw-collapsible mw-collapsed wikitable" | {| class="mw-collapsible mw-collapsed wikitable" | ||
! build | ! boost build for both 32 and 64 bit Windows | ||
|- | |- | ||
| Open a VS2013 x64 Native Tools Command Prompt... | | Open a VS2013 x64 Native Tools Command Prompt. | ||
EITHER: for new installs, you have to run bootstrap.bat first, it will build bjam; | |||
OR: for reruns, remove boost dirs: [bin.v2, stage]. | |||
Then build 64-bit: | |||
cd "C:\Michael's Data\development\sixth_column\boost_1_55_0" | cd "C:\Michael's Data\development\sixth_column\boost_1_55_0" | ||
bjam --toolset=msvc-12.0 address-model=64 --build-type=complete --stagedir=windows_lib\x64 stage | bjam --toolset=msvc-12.0 address-model=64 --build-type=complete --stagedir=windows_lib\x64 stage | ||
Now open VS2013 x86 Native Tools Command Prompt and build 32-bit: | |||
cd "C:\Michael's Data\development\sixth_column\boost_1_55_0" | |||
bjam --toolset=msvc-12.0 address-model=32 --build-type=complete --stagedir=windows_lib\x86 stage | bjam --toolset=msvc-12.0 address-model=32 --build-type=complete --stagedir=windows_lib\x86 stage | ||
|} | |} |
Revision as of 15:30, 27 January 2014
Expandc++11 containers |
---|
Expandc++11 example for large groups of objects with frequent crud AND search |
---|
Expandc++11 example for large groups of objects with infrequent crud and frequent search |
---|
Expandc++11 example to associate two complex objects (one the map key, one the map value) |
---|
Expandc++11 example for multiple unordered_set indexes into one group of objects |
---|
Expandc++11 example for set with specific sorting |
---|
Expandc++11 for loop using lambda |
---|
Expandc++ in-memory storage of "major" objects |
---|
Expandc++ stl reverse iterator skeleton |
---|
c++ stl reading a binary file |
---|
Expandc/c++ gdb debugging |
---|
ExpandC - Create a portable command line C project in Visual Studio |
---|
Expandc++ Create a portable C++ project in Visual Studio |
---|
Expandboost build for both 32 and 64 bit Windows |
---|
Expandphp debugging |
---|
Expandjava eclipse project layout format |
---|
ExpandSQL Server 2008+ proper upsert using MERGE |
---|
Expandgit recreate repo |
---|
Expandbash chmod dirs |
---|
Web Services |
---|
Firefox Addon development |
---|
Expandmediawiki collapsible skeleton |
---|
Expandmediawiki collapsible example |
---|