Skip to content

Commit 74cbacc

Browse files
committed
Append -x86 postfix to x86 binaries name
1 parent 02c7ba8 commit 74cbacc

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ The BugTrap source code and binaries in this repository are granted by the origi
1212
Check the releases section in this repository for the latest builds:
1313
[**BugTrap.zip**](https://github.com/bchavez/BugTrap/releases) contains all BugTrap components required for Win32/x64 projects:
1414

15-
* `BugTrap[U][D][N][-x64].dll` - BugTrap DLL module.
16-
* `BugTrap[U][D][N][-x64].lib` - BugTrap library file used by linker.
15+
* `BugTrap[U][D][N]-x[A].dll` - BugTrap DLL module.
16+
* `BugTrap[U][D][N]-x[A].lib` - BugTrap library file used by linker.
1717
* **`[U]`** - Unicode aware version has 'U' letter. ANSI version doesn't have 'U' letter.
1818
* **`[D]`** - Debug version has 'D' letter. Release version doesn't have 'D' letter.
1919
* **`[N]`** - managed (.NET) version has 'N' letter. Native version doesn't have 'N' letter.
20-
* **`[-x64]`** - 64 bit version for AMD-64 platform has '-x64' suffix. x86 version doesn't have this suffix.
20+
* **`[A]`** - 32-bit version has '-x86' suffix. 64 bit version for AMD-64 platform has '-x64' suffix.
2121
* `dbghelp.dll` - DbgHelp library (see ["BugTrap Developer's Guide"](https://raw.githubusercontent.com/bchavez/BugTrap/master/doc/BugTrap.pdf) for details).
2222
* `BugTrap.h` - Header file with BugTrap API definitions.
2323
* `BTTrace.h` - C++ wrapper of custom logging functions.

source/BugTrap.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,11 @@
1919
<BugTrapUnicode></BugTrapUnicode>
2020
<BugTrapDebug></BugTrapDebug>
2121
<BugTrapNet></BugTrapNet>
22-
<BugTrapArch></BugTrapArch>
22+
<BugTrapArch>-$(PlatformShortName)</BugTrapArch>
2323

2424
<BugTrapUnicode Condition="$(Configuration.Contains('Unicode'))">U</BugTrapUnicode>
2525
<BugTrapDebug Condition="$(Configuration.Contains('Debug'))">D</BugTrapDebug>
2626
<BugTrapNet Condition="$(Configuration.Contains('.NET'))">N</BugTrapNet>
27-
<BugTrapArch Condition="'$(Platform)'!='Win32'">-$(PlatformShortName)</BugTrapArch>
2827
</PropertyGroup>
2928

3029
<PropertyGroup>

0 commit comments

Comments
 (0)