Runtime error R6034 in embedded Python application

2019-01-16 06:57发布

I am working on an application which uses Boost.Python to embed the Python interpreter. This is used to run user-generated "scripts" which interact with the main program.

Unfortunately, one user is reporting runtime error R6034 when he tries to run a script. The main program starts up fine, but I think the problem may be occurring when python27.dll is loaded.

I am using Visual Studio 2005, Python 2.7, and Boost.Python 1.46.1. The problem occurs only on one user's machine. I've dealt with manifest issues before, and managed to resolve them, but in this case I'm at a bit of a loss.

Has anyone else run into a similar problem? Were you able to solve it? How?

12条回答
太酷不给撩
2楼-- · 2019-01-16 07:20

This post elaborates on @Micheal Cooper and @frmdstryr and gives a better alternative than my earlier answer. You can put the following in front of a python script to purge the problematic entries.

import os, re
path = os.environ['PATH'].split(';')

def is_problem(folder):
    try:
        for item in os.listdir(folder):
            if re.match(r'msvcr\d\d\.dll', item):
                return True
    except:
        pass
    return False

path = [folder for folder in path if not is_problem(folder)]
os.environ['PATH'] = ';'.join(path)

For the vim with YouCompleteMe case, you can put the following at the top of your vimrc:

python << EOF
import os, re
path = os.environ['PATH'].split(';')

def is_problem(folder):
    try:
        for item in os.listdir(folder):
            if re.match(r'msvcr\d\d\.dll', item):
                return True
    except:
        pass
    return False

path = [folder for folder in path if not is_problem(folder)]
os.environ['PATH'] = ';'.join(path)
EOF
查看更多
祖国的老花朵
3楼-- · 2019-01-16 07:24

A more general solution is:

import os
os.environ['path'] = ";".join(
    [path for path in os.environ['path'].split(";") 
     if "msvcr90.dll" not in map((lambda x:x.lower()), os.listdir(path))])

(I had the same problem with VanDyke SecureCRT)

查看更多
干净又极端
4楼-- · 2019-01-16 07:26

Using Michael's answer above, I was able to resolve this without a bat file by adding:

import os

# Remove CLS Client from system path
if os.environ['PATH'].find("iCLS Client")>=0:
    os.environ['PATH'] = "".join([it for it in os.environ['PATH'].split(";") if not it.find("iCLS Client")>0])

to the main python file of the application. It just makes sure system path didn't include the paths that were causing the issue before the libraries that loaded the dll's were imported.

Thanks!

查看更多
Animai°情兽
5楼-- · 2019-01-16 07:26

(This might be better as a comment than a full answer, but my dusty SO acct. doesn't yet have enough rep for that.)

Like the OP I was also using an embedded Python 2.7 and some other native assemblies.

Complicating this nicely was the fact that my application was a med-large .Net solution running on top of 64-Bit IIS Express (VS2013).

I tried Dependency Walker (great program, but too out of date to help with this), and Process Monitor (ProcMon -- which probably did find some hints, but even though I was using filters the problems were buried in thousands of unrelated operations, better filters may have helped).

However, MANY THANKS to Michael Cooper! Your steps and Process Explorer (procexp) got me quickly to a solution that had been dodging me all day.

I can add a couple of notes to Michael's excellent post.

  • I ignored (i.e. left unchanged) not just the \WinSxS\... folder but also the \System32\... folder.

Ultimately I found msvcr90.dll being pulled in from:

  • C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64

Going through my Path I found the above and another, similar directory which seemed to contain 32-bit versions. I removed both of these, restarted and... STILL had the problem.

So, I followed Michael's steps once more, and, discovered another msvcr90.dll was now being loaded from:

  • C:\Program Files\Intel\iCLS Client\

Going through my Path again, I found the above and an (x86) version of this directory as well. So, I removed both of those, applied the changes, restarted VS2013 and...

No more R6034 Error!

I can't help but feel frustrated with Intel for doing this. I had actually found elsewhere online a tip about removing iCLS Client from the Path. I tried that, but the symptom was the same, so, I thought that wasn't the problem. Sadly iCLS Client and OpenCL SDK were tag-teaming my iisexpress. If I was lucky enough to remove either one, the R6034 error remained. I had to excise both of them in order to cure the problem.

Thanks again to Michael Cooper and everyone else for your help!

查看更多
我欲成王,谁敢阻挡
6楼-- · 2019-01-16 07:28

I found the solution to the problem. Hopefully this will help someone else--these problems can be so frustrating to debug.

The problem was caused by third-party software that had added itself to the path and installed msvcr90.dll in its program folder. In this case, the problem was caused by Intel's iCLS Client.

So... How to find the problem in similar situations?

  1. Download Process Explorer here.

  2. Start your application and reproduce runtime error R6034.

  3. Start Process Explorer. In the "View" menu go to "Lower Pane View" and choose "DLLs".

  4. In the top pane, locate your application and click on it. The bottom pane should show a list of DLLS loaded for your application.

  5. Locate "msvcr??.dll" in the list. There should be several. Look for the one that is not in the "winsxs" folder, and make a note of it.

  6. Now, check the path just before your application runs. If it includes the folder you noted in step 5, you've probably found the culprit.

How to fix the problem? You'll have to remove the offending entry from the path before running your program. In my case, I don't need anything else in the path, so I wrote a simple batch file that looks like this:

path=
myprogram.exe

That's it. The batch file simply clears the path before my program runs, so that the conflicting runtime DLL is not found.

Hope this helps!

查看更多
别忘想泡老子
7楼-- · 2019-01-16 07:28

Adding this answer for who is still looking for a solution. ESRI released a patch for this error. Just download the patch from their website (no login required), install it and it will solve the problem. I downloaded the patch for 10.4.1 but there are maybe patches for other versions also.

查看更多
登录 后发表回答