System.Data.SQLite

Check-in [708dced90d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix ARM machine types
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 708dced90d9464fc083ed67e21b004e6a231f6d3
User & Date: rmsimpson 2006-01-20 19:55:57.000
Context
2006-01-20
23:09
no message check-in: 3f49013356 user: rmsimpson tags: sourceforge
19:55
Fix ARM machine types check-in: 708dced90d user: rmsimpson tags: sourceforge
16:08
1.0.24.5 check-in: c79755ec5b user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to bin/tools/mergebin.exe.

cannot compute difference between binary files

Changes to tools/mergebin/mergebin.cpp.
402
403
404
405
406
407
408




409
410
411
412
413
        pdwRVA = (DWORD *)p->Column(uRow, (UINT)0);
        if (*pdwRVA)
          *pdwRVA = (*pdwRVA) + diffRVA;
      }
    }
  }





  if (pCor->Flags & 0x08)
    _tprintf(_T("WARNING: %s must be re-signed before it can be used!\n"), pszNative);

  _tprintf(_T("Success!\n"));
}







>
>
>
>





402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
        pdwRVA = (DWORD *)p->Column(uRow, (UINT)0);
        if (*pdwRVA)
          *pdwRVA = (*pdwRVA) + diffRVA;
      }
    }
  }

  // Change the machine type to x86 if its ARM
  if (pNT->FileHeader.Machine == IMAGE_FILE_MACHINE_ARM) 
    pNT->FileHeader.Machine = IMAGE_FILE_MACHINE_I386;

  if (pCor->Flags & 0x08)
    _tprintf(_T("WARNING: %s must be re-signed before it can be used!\n"), pszNative);

  _tprintf(_T("Success!\n"));
}