All Projects → particle-iot → gcc-output-parser

particle-iot / gcc-output-parser

Licence: other
gcc error parsing library

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gcc-output-parser

nodekit
[Moved to Codeberg] A Small Web server.
Stars: ✭ 68 (+300%)
Mutual labels:  node-js
vita
《深度探索Linux操作系统 : 系统构建和原理解析》 学习笔记
Stars: ✭ 55 (+223.53%)
Mutual labels:  gcc
ci playground
Playground for Cloud CI development for C++
Stars: ✭ 23 (+35.29%)
Mutual labels:  gcc
devtoolset-container
Devtoolset container images based on Red Hat Software Collections, that provide a platform for building and running C and C++ applications. Users can choose between Red Hat Enterprise Linux, Fedora, and CentOS based images.
Stars: ✭ 40 (+135.29%)
Mutual labels:  gcc
syncify
🤝 Shopify theme upload, download and watch development tool.
Stars: ✭ 50 (+194.12%)
Mutual labels:  node-js
captcha.js
Captcha in Node.js
Stars: ✭ 23 (+35.29%)
Mutual labels:  node-js
node-github-publish
Publishes a file to a repository through the GitHub Contents API
Stars: ✭ 20 (+17.65%)
Mutual labels:  node-js
phaChat
a web chat by node.js 一个基于 node.js 的多人 web 聊天室
Stars: ✭ 18 (+5.88%)
Mutual labels:  node-js
musicritic
Your personal music-specific Metacritic.
Stars: ✭ 45 (+164.71%)
Mutual labels:  node-js
Chapter-2
Code examples for Chapter 2 of Data Wrangling with JavaScript
Stars: ✭ 16 (-5.88%)
Mutual labels:  node-js
karaoke-forever
Open karaoke party system
Stars: ✭ 180 (+958.82%)
Mutual labels:  node-js
rebuild
Zero-dependency, reproducible build environments
Stars: ✭ 48 (+182.35%)
Mutual labels:  gcc
windows-network-drive
Do network drive stuff on Microsoft Window in node
Stars: ✭ 18 (+5.88%)
Mutual labels:  node-js
xlsx-calc
javascript nodejs excel formula parser
Stars: ✭ 83 (+388.24%)
Mutual labels:  node-js
NickelTC
A dockerized, deterministic, automated, fixed, and fully-relocatable build of @NiLuJe's toolchain for Kobo eReaders.
Stars: ✭ 19 (+11.76%)
Mutual labels:  gcc
PruneBot
PruneBot is an easy to use multi-purpose bot and it has a free open source code to setup your own prune bot to your own server.
Stars: ✭ 13 (-23.53%)
Mutual labels:  node-js
motor-hat
Node Module to control Adafruits MotorHAT for the RaspberryPi
Stars: ✭ 28 (+64.71%)
Mutual labels:  node-js
Node-js-functionalities
This repository contains very useful restful API's and functionalities in node-js containing many important tutorial code for mastering node-js, all tutorials have been published on medium.com, tutorials link is given below
Stars: ✭ 69 (+305.88%)
Mutual labels:  node-js
cdetect
🔬 Detect which compiler and compiler version a Linux executable (in the ELF format) was compiled with
Stars: ✭ 23 (+35.29%)
Mutual labels:  gcc
Generate-Live-Transcription
This extension helps to get a real-time transcription of audio playing in the browser using Deep Speech.
Stars: ✭ 16 (-5.88%)
Mutual labels:  node-js

gcc output parser library

Build Status

Library which helps annotate/highlight gcc output.

Installation | Usage | Releasing

Installation

$ npm install gcc-output-parser

Usage

var parser = require('gcc-output-parser');

console.log(parser.parseString(gccOutput));

example output:

[ { filename: 'HolidayButton.cpp',
    line: 4,
    column: 37,
    type: 'fatal error',
    text: 'ParticleButton/ParticleButton.h: No such file or directory',
    codeWhitespace: ' ',
    code: 'void onCheer(const char *topic, const char *data);',
    adjustedColumn: 36 } ]

Releasing

See the release process in the RELEASE.md file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].