Forum Replies Created
-
AuthorPosts
-
b.timofte
Participanthi
Can you post the link to the fixed installer here ?
b.timofte
ParticipantBut 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)
b.timofte
ParticipantI 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.
b.timofte
ParticipantIs 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 !
b.timofte
ParticipantSome correction . The slowness occurs when i right click the folder in visual studio and chose Delete
Import is fast
b.timofte
ParticipantI changed toolchain to c:\SysGCC\ and it worked … Strange
b.timofte
ParticipantI 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
b.timofte
ParticipantI removed all b funct_name from the gdb scripts
This was failing but i dont know why -_-”
b.timofte
ParticipantI dont know what are you talking about honestly
b.timofte
ParticipantFinally 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)
endifb.timofte
ParticipantWith 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 8 years, 7 months ago by
b.timofte.
b.timofte
ParticipantThe 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)
endifgives error
1> The system cannot execute the specified program.
1> mingw32-make: *** [Debug/17_01_Dev.exe] Error 1And in the Debug folder beside .dep and .o there is one 17_01_Dev.exe.in who contains “-g”
Heeeelp
b.timofte
ParticipantThe 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 1b.timofte
ParticipantFor the first variant there is the file “WindowsProject1.exe.in” in debug -_-
b.timofte
ParticipantI 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 -
This reply was modified 8 years, 7 months ago by
-
AuthorPosts