b.timofte

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 58 total)
  • Author
    Posts
  • in reply to: Kudos #12636
    b.timofte
    Participant

    hi

    Can you post the link to the fixed installer here ?

    in reply to: Kudos #12628
    b.timofte
    Participant

    But yeah , keep adding flashing features when clang intellisense cant parse 10 lines of code and removing files into project takes ages (on core i7, 4Ghz machine)

    in reply to: Kudos #12627
    b.timofte
    Participant

    I dont think any kudos is deserved by the team

    I have since 1 year a simple CLANG intellisense bug , which involves 3 files and approximately 10 lines of code .

    Still not fixed.

    Ps: Visual studio native intellisense worked as expected. The CLANG intellisense is useless.

    in reply to: very slow import with Clang intellisense-broken #12478
    b.timofte
    Participant

    Is there a easy way to re import part of files of a project who was modified without first deleting the files from inisde visual studio ? This  DELETION IS WHAT TAKES 99% OF TIME .

    If i dont delete them from vs 2015 projetc they remain there but when i click thme filename it says it cannot be  found …

     

    Everytime my project modifies i have to wast 15 mins of waiting vs 2015 to delete the files from inside the vs 2015 project … This  is bullshit and a major issue for VisualGDB !

    in reply to: very slow import with Clang intellisense-broken #12466
    b.timofte
    Participant

    Some correction . The slowness occurs when i right click the folder in visual studio and chose Delete

     

    Import is fast

    in reply to: cmd make VS 2017 blocks clean #11032
    b.timofte
    Participant

    I changed toolchain to c:\SysGCC\ and it worked … Strange

    in reply to: put breakpoint when variable changes #8769
    b.timofte
    Participant

    I managed to put the breakpoint at runtime , but when i try to enable it i receve an error from VS something about garbage data returned, and then the breakpoint is rejected

    in reply to: GDB stopps executing #8752
    b.timofte
    Participant

    I removed all b funct_name from the gdb scripts

    This was failing but i dont know why -_-”

    in reply to: VisualGDB doesnt allow to specify lib order #8687
    b.timofte
    Participant

    I dont know what are you talking about honestly

    in reply to: VisualGDB fails to give proper error to build fail #8678
    b.timofte
    Participant

    Finally it works with this !!

     

    ifeq ($(TARGETTYPE),APP)
    $(BINARYDIR)/$(TARGETNAME): $(all_objs) $(EXTERNAL_LIBS)
    $(file >$@.in,$^)
    $(LD) -o $@ $(LDFLAGS) $(START_GROUP) @$@.in $(LIBRARY_LDFLAGS) $(END_GROUP)
    endif

    in reply to: VisualGDB fails to give proper error to build fail #8674
    b.timofte
    Participant

    With the first variant there is on 17_01_Dev.exe.in which contains the list of objects like

    Debug/file2.o Debug/file1.o …

    The last object name in this file is

    Debug/DcmAppl_DcmCheckRdbiResponseLengh

    but my file is in the Debug folder is

    DcmAppl_DcmCheckRdbiResponseLength.o

    Its missing the “t”

    Also the file 17_01_Dev.exe.in doesnt contain the list of all my objects

    I have objects from A to X alphabetically but it stops at D

    (in notepad it says it has 8191 characters)

     

    WTF O_O

     

     

    • This reply was modified 7 years, 9 months ago by b.timofte.
    in reply to: VisualGDB fails to give proper error to build fail #8673
    b.timofte
    Participant

    The second variant

    ifeq ($(TARGETTYPE),APP)
    $(BINARYDIR)/$(TARGETNAME): $(all_objs) $(EXTERNAL_LIBS)
    <TAB>@echo -g > $@.in
    <TAB>$(foreach obj,$(all_objs),cmd /c “echo $(obj) >> $@.in”)
    <TAB> $(LD) -o $@ $(LDFLAGS) $(START_GROUP) @$@.in $(LIBRARY_LDFLAGS) $(END_GROUP)
    endif

    gives error

    1>  The system cannot execute the specified program.
    1>  mingw32-make: *** [Debug/17_01_Dev.exe] Error 1

     

    And in the Debug folder beside .dep and .o there is one 17_01_Dev.exe.in who contains “-g”

     

    Heeeelp

     

    in reply to: VisualGDB fails to give proper error to build fail #8672
    b.timofte
    Participant

    The first solution truncates the .c files with char length >~34 characters. So then it cant find them when linking…

     

    1>  C:/SysGCC/mingw32/bin/g++.exe -o Debug/17_01_Dev.exe -Wl,-Map,BswSim.map -Wl,–allow-multiple-definition    -Wl,–start-group @Debug/17_01_Dev.exe.in    -Wl,–end-group
    1>g++.exe : error : Debug/TRUNCATEDFILENAME: No such file or directory
    1>  Makefile:137: recipe for target ‘Debug/17_01_Dev.exe’ failed
    1>  mingw32-make: *** [Debug/17_01_Dev.exe] Error 1

    in reply to: VisualGDB fails to give proper error to build fail #8671
    b.timofte
    Participant

    For the first variant there is the file “WindowsProject1.exe.in” in debug -_-

    in reply to: VisualGDB fails to give proper error to build fail #8670
    b.timofte
    Participant

    I also tried this

    ifeq ($(TARGETTYPE),APP)
    $(BINARYDIR)/$(TARGETNAME): $(all_objs) $(EXTERNAL_LIBS)
    <TAB>@echo -g > $@.in
    <TAB>$(foreach obj,$(all_objs),cmd /c “echo $(obj) >> $@.in”)
    <TAB> $(LD) -o $@ $(LDFLAGS) $(START_GROUP) @$@.in $(LIBRARY_LDFLAGS) $(END_GROUP)
    endif

     

Viewing 15 posts - 31 through 45 (of 58 total)