Skip to content
This repository has been archived by the owner on Aug 30, 2020. It is now read-only.

add '-target' to whitelist #121

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open

Commits on Sep 7, 2018

  1. add '-target' to whitelist

    e.g. -target arm-none-eabi
    In your prefered build system you could add this build flag.
    for Makefile:
    ifeq($(YCMG), 1)
        CFLAGS += -target arm-none-eabi
    endif
    and start the generator in vim with:
    YCMGeneratConfig -M=YCMG=1 -f
    
    Probably this could be done automatically with the fake build system?
    Wurstnase committed Sep 7, 2018
    Configuration menu
    Copy the full SHA
    797ceab View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2019

  1. Configuration menu
    Copy the full SHA
    20f1fe6 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2019

  1. avr: create new avr fakes

    Wurstnase committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    64dad94 View commit details
    Browse the repository at this point in the history
  2. it's now possible to create a ycm_extra_manual_config.py with a list …

    …of extra_flags
    
    so you would be able to import some extra stuff like test-frameworks
    ycm_extra_manual_config.py:
    extra_flags = ['-I./my_testframework/inc', '-I./some_other_includes']
    Wurstnase committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    0dc2923 View commit details
    Browse the repository at this point in the history