Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To test whether I could link 2 shared objects to 2 different CUDA library versions (say version 4 and version 5), I made the following testing scripts:

#!/bin/bash
# Source global definitions
CUDA4=/opt/cuda/
CUDA5=/opt/cuda-5.0/

echo "compiling version_cuda.cc"
CUDA=${CUDA5}
g++ -fPIC -c version_cuda.cc -o version_cuda.o -I${CUDA}include
g++ -shared version_cuda.o -o libversion_cuda.so -L${CUDA}lib64 -lcudart -Wl,--rpath,${CUDA}lib64

echo
echo "compiling version_cuda2.cc"
CUDA=${CUDA4}
g++ -fPIC -c version_cuda2.cc -o version_cuda2.o -I${CUDA}include
g++ -shared version_cuda2.o -o libversion_cuda2.so -L${CUDA}lib64 -lcudart -Wl,--rpath,${CUDA}lib64

echo
echo "linking version_test.cc"
g++ version_test.cc -L. -lversion_cuda -lversion_cuda2

echo
echo "running..."
./a.out

What I don't understand is, no matter how do I switch CUDA4 and CUDA5, the output version numbers will always be the first version I tried to link to (i.e. version_test.cc). Could not understand why, and thanks for any suggestions/comments.

Following is the source codes (missing header files, which are trivial):

version_test.cc:

#include "version_cuda.h"
#include "version_cuda2.h"
int main()
{
    get_cuda_version();
    get_cuda_version2();
}

version_cuda.cc

#include <cuda.h>
#include <cuda_runtime_api.h>
#include <iostream>

#include "version_cuda.h"

using namespace std;

void get_cuda_version()
{
    int ver;
    cudaRuntimeGetVersion(&ver);
    cout<<"cudart version: "<<ver<<endl;
}

version_cuda2.cc

#include <cuda.h>
#include <cuda_runtime_api.h>
#include <iostream>

#include "version_cuda2.h"

using namespace std;

void get_cuda_version2()
{
    int ver;
    cudaRuntimeGetVersion(&ver);
    cout<<"cudart version2: "<<ver<<endl;
}
share|improve this question
I may not be quite right when building the shared object, and thanks for comments. – Hailiang Zhang Feb 16 at 0:49

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.