-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added prepend execution base path feature.
- Loading branch information
Showing
16 changed files
with
365 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
chibild/chibild.core.Tests/LinkerTests.PrependSearchPath.verified.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
| ||
// .NET IL Disassembler. Version 8.0.0 | ||
|
||
|
||
|
||
// Metadata version: v4.0.30319 | ||
.assembly extern mscorlib | ||
{ | ||
.publickey = (00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 ) | ||
.ver 4:0:0:0 | ||
} | ||
.assembly extern prependertestbed | ||
{ | ||
.ver 0:0:0:0 | ||
} | ||
.assembly output | ||
{ | ||
.custom instance void [mscorlib]System.Runtime.Versioning.TargetFrameworkAttribute::.ctor(string) = ( 01 00 1A 2E 4E 45 54 46 72 61 6D 65 77 6F 72 6B // ....NETFramework | ||
2C 56 65 72 73 69 6F 6E 3D 76 34 2E 35 00 00 ) // ,Version=v4.5.. | ||
.ver 1:0:0:0 | ||
} | ||
.module output.dll | ||
.imagebase 0x00400000 | ||
.file alignment 0x00000200 | ||
.stackreserve 0x00100000 | ||
.subsystem 0x0003 // WINDOWS_CUI | ||
.corflags 0x00000001 // ILONLY | ||
|
||
|
||
// ================== GLOBAL METHODS ========================= | ||
|
||
.method assembly static int32 _start() cil managed | ||
{ | ||
.entrypoint | ||
// Code size 26 (0x1a) | ||
.maxstack 8 | ||
IL_0000: ldstr "aaa/bin" | ||
IL_0005: call void [prependertestbed]C.text::__prepend_path_env(string) | ||
IL_000a: ldstr "bbb/bin" | ||
IL_000f: call void [prependertestbed]C.text::__prepend_path_env(string) | ||
IL_0014: call int32 C.text::main() | ||
IL_0019: ret | ||
} // end of global method _start | ||
|
||
|
||
// ============================================================= | ||
|
||
|
||
// =============== CLASS MEMBERS DECLARATION =================== | ||
|
||
.class public abstract auto ansi sealed C.text | ||
extends [mscorlib]System.Object | ||
{ | ||
.method public static int32 main() cil managed | ||
{ | ||
// Code size 2 (0x2) | ||
.maxstack 8 | ||
IL_0000: ldc.i4.1 | ||
IL_0001: ret | ||
} // end of method text::main | ||
|
||
} // end of class C.text | ||
|
||
|
||
// ============================================================= | ||
|
||
// *********** DISASSEMBLY COMPLETE *********************** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.