Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
1k views

Replacing ld with gold - any experience?

Has anyone tried to use gold instead of ld? gold promises to be much faster than ld, so it may help speeding up test cycles for large C++ applications, but can it be used as drop-in replacement for ...
2
votes
1answer
356 views

Does binutils-gold has support for arm/Android?

I am trying to replace my default arm-eabi-ld with installed from binutils-gold ld, however during linking I have got (..../*.o) requires unsupported dynamic reloc; recompile with -fPIC ...
1
vote
6answers
156 views

Best parser generator for parsing many small texts in C++?

I am, for performance reason, porting a C# library to C++. During normal operation, this library needs, amongst other things, to parse about 150'000 math expressions (think excel formulas) with an ...
1
vote
1answer
200 views

Is HL7 (HL7.org) message format expressable as BNF with LALR(1) Compatability?

Title says it all. Reposted this as a new messsage (orgiginally I asked for the BNF grammar of HL7). Whilst it may be possible to express all of HL7 as BNF I need my BNF to be LALR(1) complaint ...
1
vote
3answers
1k views

Gold Parsing System - What can it be used for in programming?

I have read the GOLD Homepage ( http://www.devincook.com/goldparser/ ) docs, FAQ and Wikipedia to find out what practical application there could possibly be for GOLD. I was thinking along the lines ...
0
votes
1answer
124 views

GOLD Parser : ANSI-C grammar not actually parsing ANSI-C?

I'm trying to test the ANSI-C grammar provided on the GOLD Parser website. I can't seem to even completly parse the smallest of the C file. Example: int test_inc1(void) { int t; t = 2 + 2; ...
0
votes
0answers
41 views

error when declaring datetime grammar in gold

I have declared a grammar for date time here but I get a parser recognize error. Could someone help me here. {Date Chars} = {Printable} - [#] DateLiteral = '#'{Date chars}'#' ! ...
0
votes
1answer
170 views

Template class using Gold Parser and the Klimstra engine

I'm using Klimstra's VB.NET template from the "Create skeleton program" of the GOLD parser but the resulting template has methods with the overrides keyword and inherits from "TemplateParser".. that ...
0
votes
1answer
253 views

Can I improve this GOLD Parser Grammar?

I have to parse a file that looks like this: versioninfo { "editorversion" "400" "editorbuild" "4715" } visgroups { } world { "id" "1" "mapversion" "525" "classname" "worldspawn" ...