Issues compiling on the CBC an error that says something about "kiss-compat.h"? solved

No replies
intelburn
intelburn's picture
Title: MiniBot
Joined: 07/02/2009
Posts:
BotPoints: 43
User offline. Last seen 10 years 5 weeks ago.

This is an issue about KISS-C trying to adapt gcc on your computer using compatibility libraries. The issue effects people who started to write their code using the options "This Machine". The issue is in top of the template

  1. /* Includes the Standard IO Library */
  2. #include <stdio.h>
  3. #include <kiss-compat.h>
  4. //#include <kiss-graphics.h>
  5. //#include <kiss-serial.h>
  6. //#include <kiss-create-2011.h>
  7. //#include <kiss-input.h>

You have 2 options about fixing the issue.
1: copy the contents of main() into a new file
2: delete/coment out
  1. #include <stdio.h>
  2. #include <kiss-compat.h>
and your issues should be solved

We kick bot
JLCC