Alfonso Arbona Gimeno

Results 7 comments of Alfonso Arbona Gimeno

Yes, in fact I replied to the list yesterday but my emails seem to arrive with a huge delay, I don't know why. I was using the left panel list,...

Alright, what a mess of a bug report. Sorry about that. I tried v1.0.0 and it didn't start saying that the master file does not exist. So I did: ```...

Reading the code it seems that MergeFromFail just does print an error and exit(1) so I guess I will just `sed` over the generated code and replace the macro with...

Thanks! However I'm starting to think that the leak is not only in there because I removed the `__FILE__` macros from my generated source files and recompiled and the path...

@acozzette, I'm using cmake and it passes full paths to g++ so I can't easily change that. There is a setting to change it but it seems to work only...

I ended up doing a horribly bad hack in cmake to _fix_ this: ``` set_source_files_properties(${SOURCE_FILES} PROPERTIES COMPILE_FLAGS "${CXXFLAGS} -s -Wno-builtin-macro-redefined -U__FILE__ -D__FILE__='\"$(subst ${CMAKE_SOURCE_DIR}/,,$(abspath $

Back when I was searching how to fix this (if my memory is correct), people were using small hacks and such for cmake because the cmake devs say that it...