You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
333 B
11 lines
333 B
4 months ago
|
// Build with cl:
|
||
|
// cl.exe /Z7 pdb-diff.cpp /link /debug /pdb:pdb-diff-cl.pdb
|
||
|
// /nodefaultlib /entry:main
|
||
|
// Build with lld (after running the above cl command):
|
||
|
// lld-link.exe /debug /pdb:pdb-diff-lld.pdb /nodefaultlib
|
||
|
// /entry:main pdb-diff.obj
|
||
|
|
||
|
void *__purecall = 0;
|
||
|
|
||
|
int main() { return 42; }
|