Languages

Menu
Sites
Language
Linker error is occurred.

I got the following Linker error:

clang++.exe: error: no such file or directory: './src/sour'

But I don't have the file or directory './src/sour'. Has clang++.exe in Tizen SDK a limitation of the number of building files at once?

Can someone please help me?

Thank you,

Edward

 

Responses

2 Replies
손권 김

Actually, I have tried to build so many files into 'libnlu.so'. And they are in a directory of ./src/source/.

 

손권 김

Here is a part of my makefile auto-generated:

------------------------------------

-include ../makefile.defs
-include makefile.sa

# Add inputs and outputs from these tool invocations to the build variables

# All Target
all: libonlu.so secondary-outputs

# Tool invocations
libvlingonlu.so: $(OBJS) $(USER_OBJS)
    @echo 'Building target: $@'
    @echo 'Invoking: C++ Linker'
    $(CXX) -o"libnlu.so" $(OBJS) $(USER_OBJS) $(LIBS) -L"$(PROJ_PATH)\lib" -shared -Wl,--no-undefined -target i386-tizen-linux-gnueabi -gcc-toolchain C:/tizen-sdk/tools/smart-build-interface/../i386-linux-gnueabi-gcc-4.6/ -ccc-gcc-name i386-linux-gnueabi-g++ -march=i386 -Xlinker --as-needed -lpthread --sysroot="C:/tizen-sdk/tools/smart-build-interface/../../platforms/mobile-2.3/rootstraps/mobile-2.3-emulator.core" -L"C:/tizen-sdk/tools/smart-build-interface/../../platforms/mobile-2.3/rootstraps/mobile-2.3-emulator.core/usr/lib" $(RS_LIBRARIES)
    @echo 'Finished building target: $@'
    @echo ' '

# Other Targets

------------------------------

 

Thank you,

Edward