Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
197 views

How to make my program search specific folders for dependencies?

When my program opens, before any of my code actually runs, it will automatically attempt to load various DLLs whose functions it imports. It looks in the folder that the app is in, and then in a few ...
2
votes
4answers
718 views

how can a Win32 App plugin load its DLL in its own directory

My code is a plugin for a specific Application, written in C++ using Visual Studio 8. It uses two DLL from an external provider. Unfortunately, my plugin fails to start because the DLLs are not found ...
2
votes
3answers
2k views

controlling which project header file Xcode will include

My Xcode project builds to variations of the same product using two targets. The difference between the two is only on which version of an included library is used. For the .c source files it's easy ...
1
vote
2answers
66 views

viewpathing in postgres (private/individual versions of otherwise globally available tables)

I want to create a test environment where the basic underlying postgres database is overlain with an instance-localized private view, such that all queries from a specific set of processes go through ...
1
vote
2answers
127 views

How can I delay-load a Windows private assembly? Is it possible?

My project is a plug-in (Windows DLL) that is loaded by a host executable not under my control. My DLL wants to load some additional libs. I do this with private assemblies; there's a great answer ...
1
vote
2answers
542 views

Find a directory in shared library search path

I want dlopen() every shared library in a specific directory. In order to do that, what is the cleanest way to retrieve linux's library search path. Or Is there a quicker way of find a specific ...
1
vote
2answers
233 views

VisualStudio unit test doesn't find my DLL with P/Invoke. How can I fix this?

I'm working on Windows 7 with Visual Studio 2008. I have a .NET assembly that makes calls into a native DLL with P/Invoke. I have set up a separate .NET unit test project in my Visual Studio ...
0
votes
1answer
21 views

A* Search, node to be expanded next when evaluation function evaluates the same

Im having trouble understanding which node/state should be expanded next in an A* search tree when the evaluation function (f(n) = g(n) + h(n)) evaluates the same for two nodes. Example 1 my ...
0
votes
2answers
88 views

fopen() search paths

Is there a way to set a search path for fopen() so that when I just enter the filename, it searches these path(s) for this file? f=fopen("xxx","r"); I just want xxx not to be in the current ...
0
votes
1answer
57 views

PostgreSQL can I inherit search_path variable from a “group role”?

I know I can define the search_path variable for a login this way: ALTER ROLE myrole SET search_path=public, foo, bar; But if I use a lot of logins I will also use groups (groups in pgadmin which ...
0
votes
4answers
201 views

PostgreSQL search_path change not working as advertised

I am using PostgreSQL 9.0.3 on RedHat. The database contains two schemas, public and wh. I created a new role called django. I want this user to use the wh schema as it's default. Following the ...
0
votes
1answer
503 views

Runtime linker ignores RPATH in executable on solaris

I'm trying to compile samtools on a Solaris server where I do not have root. Samtools depends on zlib. The system zlib on this machine is not compiled with large file support, so compiling samtools ...
0
votes
1answer
730 views

Including headers from custom framework in XCode

Am I supposed to adjust FRAMEWORK_SEARCH_PATHS or HEADER_SEARCH_PATHS when I add custom frameworks to the project? I have MainProject.xcodeproject that links SomeFramework.framework that's simply ...
0
votes
1answer
465 views

Delphi 2010, DeHL, file not found

Have installed trial version of Delphi 2010, and hoped to get a look at DeHL. There must be something that I have missed out on, though, cause I can't find out how to include any of the units ...