Error Packaging Excel Function

조회 수: 2 (최근 30일)
Peter
Peter 2015년 6월 23일
댓글: Peter 2015년 6월 25일
I am trying to follow the example of packaging a simple function to use within an excel spreadsheet.
function y = mymagic(x)
y = magic(x);
I go into the "MATLAB Compiler" select my file and click Package. I get the error seen below.
The log file is attached. I believe the error has something to do with line 198:
Creating library C:\Users\Magnet Mapper\Documents\MATLAB\mymagic\for_testing\mymagic_1_0.lib and object C:\Users\Magnet Mapper\Documents\MATLAB\mymagic\for_testing\mymagic_1_0.exp
LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
Can anyone help me resolve this?
Thank you!

채택된 답변

Gitesh Nandre
Gitesh Nandre 2015년 6월 24일
There is a Microsoft issue where the installation of Visual Studio 2012 causes problems with the Visual Studio 2010 installation, which results in the same error above. More details are at:
To fix it, either upgrade Visual Studio 2010 to SP1, or disable incremental linking in Visual Studio.
This issue also occurs when without Visual studio installations when you upgrade to .NET framework 4.5 and use Microsoft Windows SDK 7.1 as compiler. The workaround is to downgrade to .NET framework 4.0.
  댓글 수: 2
Peter
Peter 2015년 6월 25일
I have these installed:
  • Microsoft .Net Framework 4 Multi-Targeting Pack
  • Microsoft .Net Framework 4.5.2
  • Microsoft Visual Studio 2010 Tools for Office Runtime (x64)
  • Microsoft Windows SDK for Windows 7 (7.1)
How do I know which one(s) are the problem?
Peter
Peter 2015년 6월 25일
I ended up uninstalling Microsoft .Net Framework 4 Multi-Targeting Pack and Microsoft .Net Framework 4.5.2
I then re-installed Microsoft Framework 4, and successfully repackaged my function for use in excel.
Thank you for your help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Compiler SDK에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by