slavav

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: cc: error: ProvideDirectories: No such file or directory #9382
    slavav
    Participant

    Yessss!!  Thanks, I can build now. Continue checking further. Thanks!

    in reply to: cc: error: ProvideDirectories: No such file or directory #9350
    slavav
    Participant

    Sent. Thanks!!!  I sit crossing fingers )))

     

    ps: I forget to send sln, but nothing special in it:

    Microsoft Visual Studio Solution File, Format Version 12.00

    # Visual Studio 14

    VisualStudioVersion = 14.0.25123.0

    MinimumVisualStudioVersion = 10.0.40219.1

    Project(“{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}”) = “tesst”, “tesst\tesst.vcxproj”, “{46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}”

    EndProject

    Global

    GlobalSection(SolutionConfigurationPlatforms) = preSolution

    Debug|VisualGDB = Debug|VisualGDB

    Debug|x64 = Debug|x64

    Debug|x86 = Debug|x86

    Release|VisualGDB = Release|VisualGDB

    Release|x64 = Release|x64

    Release|x86 = Release|x86

    EndGlobalSection

    GlobalSection(ProjectConfigurationPlatforms) = postSolution

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Debug|VisualGDB.ActiveCfg = Debug|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Debug|VisualGDB.Build.0 = Debug|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Debug|x64.ActiveCfg = Debug|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Debug|x86.ActiveCfg = Debug|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Release|VisualGDB.ActiveCfg = Release|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Release|VisualGDB.Build.0 = Release|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Release|x64.ActiveCfg = Release|VisualGDB

    {46E4911E-1E99-4B9F-9D81-C8C2037EC2F3}.Release|x86.ActiveCfg = Release|VisualGDB

    EndGlobalSection

    GlobalSection(SolutionProperties) = preSolution

    HideSolutionNode = FALSE

    EndGlobalSection

    EndGlobal

     

     

    • This reply was modified 7 years, 6 months ago by slavav.
    in reply to: cc: error: ProvideDirectories: No such file or directory #9267
    slavav
    Participant

    I use trial. Is there trial limitation for… number of files? project dependancies?

    due to very strange error.

    I create new static lib project – build OK

    add 2-3 files – build OK

    I create another static lib project – Build OK

    I add reference from one project to another – build error.

    remove reference – doesn’t help.

     

    Another situation:

    new project – buld OK

    add 1-2 new files – build OK

    add 3-rd file – build fail.  Why????

    I remove this 3-rd file – build failed at any rate. That’s all.  Visually make file looks good for me

    in reply to: cc: error: ProvideDirectories: No such file or directory #9261
    slavav
    Participant

    I couldn’t understand how to insert sqlite.msbuild-mak file. Thus content:

     

     

    #This file is generated by VisualGDB from your MSBuild project.

    #Do not edit it manually as it will be regenerated on each build.

    #You can build this project manually by running the following command line:

    # make -f <path to this file>

    #The ‘prepare’ target needs to be built before the ‘build’ target to ensure all

    #response files are up-to-date

     

    ifneq ($(VERBOSE),1)

    _V := @

    endif

     

    build:

     

    ProvideDirectories:

    @mkdir -p VisualGDB/Debug/

     

    PREPARE_TARGETS := ProvideDirectories

     

    #ClCompile – 2 files

     

    UpdateRSP/VisualGDB/Debug/os.o:

    $(_V)echo “-ggdb -O0 -DDEBUG=1 -ffunction-sections -fdata-sections” > VisualGDB/Debug/os.gcc.rsp-new

    $(_V)cmp –silent VisualGDB/Debug/os.gcc.rsp-new VisualGDB/Debug/os.gcc.rsp || cp VisualGDB/Debug/os.gcc.rsp-new VisualGDB/Debug/os.gcc.rsp

     

    UpdateRSP/VisualGDB/Debug/sqlite.o:

    $(_V)echo “-ggdb -O0 -DDEBUG=1 -ffunction-sections -fdata-sections” > VisualGDB/Debug/sqlite.gcc.rsp-new

    $(_V)cmp –silent VisualGDB/Debug/sqlite.gcc.rsp-new VisualGDB/Debug/sqlite.gcc.rsp || cp VisualGDB/Debug/sqlite.gcc.rsp-new VisualGDB/Debug/sqlite.gcc.rsp

     

    -include VisualGDB/Debug/os.dep

    VisualGDB/Debug/os.o: os.c VisualGDB/Debug/os.gcc.rsp

    @echo os.c

    $(_V)gcc @VisualGDB/Debug/os.gcc.rsp -c “os.c” -o “VisualGDB/Debug/os.o” -MD -MP -MF “VisualGDB/Debug/os.dep”

     

    -include VisualGDB/Debug/sqlite.dep

    VisualGDB/Debug/sqlite.o: sqlite.cpp VisualGDB/Debug/sqlite.gcc.rsp

    @echo sqlite.cpp

    $(_V)g++ @VisualGDB/Debug/sqlite.gcc.rsp -c “sqlite.cpp” -o “VisualGDB/Debug/sqlite.o” -MD -MP -MF “VisualGDB/Debug/sqlite.dep”

     

    PREPARE_TARGETS += UpdateRSP/VisualGDB/Debug/os.o UpdateRSP/VisualGDB/Debug/sqlite.o

    CLCOMPILE_TARGETS += VisualGDB/Debug/os.o VisualGDB/Debug/sqlite.o

     

     

    UpdateRSP/../VisualGDB/Debug/sqlite.ar.rsp:

    $(_V)mkdir -p “../VisualGDB/Debug”

    $(_V)echo “-r ../VisualGDB/Debug/sqlite.a VisualGDB/Debug/os.o VisualGDB/Debug/sqlite.o” > ../VisualGDB/Debug/sqlite.ar.rsp-new

    $(_V)cmp –silent ../VisualGDB/Debug/sqlite.ar.rsp-new ../VisualGDB/Debug/sqlite.ar.rsp || cp ../VisualGDB/Debug/sqlite.ar.rsp-new ../VisualGDB/Debug/sqlite.ar.rsp

     

    ../VisualGDB/Debug/sqlite.a: ../VisualGDB/Debug/sqlite.ar.rsp VisualGDB/Debug/os.o VisualGDB/Debug/sqlite.o

    $(_V)ar @../VisualGDB/Debug/sqlite.ar.rsp

     

    PREPARE_TARGETS += UpdateRSP/../VisualGDB/Debug/sqlite.ar.rsp

    FINAL_TARGETS += ../VisualGDB/Debug/sqlite.a

     

     

    .PHONY: $(PREPARE_TARGETS)

    build: $(PREPARE_TARGETS) $(FINAL_TARGETS)

     

     

    • This reply was modified 7 years, 7 months ago by slavav.
Viewing 4 posts - 1 through 4 (of 4 total)