Questions tagged [cedet]

CEDET is a Collection of Emacs Development Environment Tools written with the end goal of creating an advanced development environment in Emacs

CEDET provides number of features:

  • Projects management system
  • Smart Completion
  • Smart Help/Jump
  • Symbol References
  • Code Generation
  • UML Diagrams
  • Advanced Code Browsing
186 questions
1
vote
1 answer

How to activate and modify build configurations in cedet/ede?

I basically want to know how to turn off optimization so that gdb works correctly. When I set up an Automake project from scratch, it seems like the defaults for CPPFLAGS are "-g -O2", but I just want "-g". There is an unrelated question where the…
BD at Rivenhill
  • 12,395
  • 10
  • 46
  • 49
1
vote
1 answer

Can't switch between proto and implement in C++ project

I have use semantic-analyze-proto-impl-toggle to switch between the function's proto and impl, but when I use this feature it always doesn't do anything except saying that it can't find correspongding implement, the other feature like name…
cofol1986
  • 25
  • 1
  • 6
1
vote
1 answer

EDE generated makefile set variable using ?=

Is there a way to set via the EDE customization buffers a variable in Make makefile that will be assigned using ?= ?
EpsilonVector
  • 3,973
  • 7
  • 38
  • 62
0
votes
1 answer

Cedet cannot properly parse the time.h under /usr/include

I configured my cedet almost the same with http://alexott.net/en/writings/emacs-devenv/EmacsCedet.html. Thanks alexott , most of the time it works well, but I found that it can not well parse the tm struct in /usr/include/time.h. #include…
0
votes
2 answers

how can I use elisp to print dependencies of a code?

I am trying to print the dependencies associated with a code, such as definitions related to functions or variables in a statement using Emacs, however I am not finding the functions necessary to do it. I have already been able to parse the code,…
0
votes
0 answers

CEDET and Modern C++ : Nested Namespaces not working

i trying to use CEDET for C++-Development but especially modern C++ feature like nested Namespaces like: ns1::ns2::ns3 .. { } not working. I tried to find out if there existing plans to implement support for modern C++ in CEDET?. But no success. …
user5517842
0
votes
1 answer

Can't find any references using 'semantic-symref-symbol'

I'm getting No references found message whenever I use "semantic-symref-symbol" (C-c , g) trying to get all the references to any symbol, whether the symbol is a C++ class member variable or a local variable, it just couldn't find any reference. The…
York
  • 2,056
  • 1
  • 15
  • 23
0
votes
2 answers

how to write a locate-function for ede

I use emacs as a C++ IDE. I have CEDET and EDE configured and working nicely, but i have a minor problem. In my project header files are spread all over the project tree, so i need to write a function to help ede to find my headers. I have been…
thamurath
  • 765
  • 8
  • 24
0
votes
0 answers

Can't build CEDET for emacs

Whenever I try to build CEDET with emacs -Q -l cedet-build.el -f cedet-build I get this status: CEDET BYTE COMPILATION STATUS: Step 1: Byte compile EIEIO...done Step 2: EDE Autloads...done. Step 3: Semantic Autloads...done. Step 4: SRecode…
Andreas
  • 53
  • 7
0
votes
1 answer

Update cedet in emacs on Mac

I installed emacs using Home Brew but later I found the cedet bundled with emacs is out dated. But when I followed the instructions in cedet official site, downloaded the tar file, un-tar it and run make in that dir, then I got 2 errors telling me…
Alphasis
  • 75
  • 8
0
votes
1 answer

Emacs - CEDET startup problems

i have installed the cedet-extension for my emacs-editor. I have downoaded it from the specific sourceforge-page and have used the make-command. Then i have added this line in the .emacs config-file: (load-file "~/cedet-1.1/common/cedet.el") Then i…
ThinkPad
  • 9
  • 1
  • 1
  • 2
0
votes
1 answer

auto completion of cedet doesn't work if I use ac-source-semantic instead of ac-source-semantic-raw

I have set up an c/c++ IDE according to this video (https://www.youtube.com/watch?v=Ib914gNr0ys). Everything works ok except that the auto completion of cedet didn't work. After googling a lot, this answer…
Douglas Su
  • 3,214
  • 7
  • 29
  • 58
0
votes
2 answers

ede-proj-regenerate does weird things with my Makefile

I have created a really basic project (Make) like this: (ede-proj-project "zrm" :name "zrm" :file "Project.ede" :targets (list (ede-proj-target-makefile-program "zm" :name "zrm" :path "" :source '("zrm.c") ) ) ) When…
Xavier Maillard
  • 958
  • 7
  • 15
0
votes
1 answer

Emacs semantic auto-complete show error?

I use emacs semantic to auto-complete C language structure, but when I tag ">" (Message->) it show error "cannot analyze buffers not supported by semantic". Google many times and I did not find any solution. Debug Message: Debugger entered--Lisp…
Wink Chow
  • 11
  • 1
0
votes
1 answer

How to find settings for ede-cpp-root-projects in Emacs?

In Emacs, we can set ede-cpp-root-project as follows: (ede-cpp-root-project "NAME" :file "FILENAME" :include-path '("/include" "../include" "/c/include") :system-include-path…
UnSat
  • 1,347
  • 2
  • 14
  • 28