Hello everyone,

MPLAB has suddently stopped compiling my projets, all of them! I get the error "Unable to find symbol name in string table". Tried to Google it and found this:
All COFF file errors indicate an internal error in the file’s contents. Please contact Microchip support

I've tried to uninstall/re-install MPLAB & PBP3 without success. Here is what I get exactly:

Code:
CLEAN SUCCESSFUL (total time: 63ms)
make -f nbproject/Makefile-default.mk SUBPROJECTS= .build-conf
make[1]: Entering directory 'C:/Users/Michel Jasmin/MPLABXProjects/Dummy.X'
make  -f nbproject/Makefile-default.mk dist/default/production/Dummy.X.production.hex
make[2]: Entering directory 'C:/Users/Michel Jasmin/MPLABXProjects/Dummy.X'
gnumkdir -p build/default/production 
"C:\PBP3\pbpx.exe"  -ampasmx -k# -os -p16f690 Dummy.pbp 
make[2]: *** [build/default/production/Dummy\.cof] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
PICBASIC PRO(TM) Compiler 3.0.7.2, (c) 1998, 2013 microEngineering Labs, Inc.
All Rights Reserved.
Error - Unable to find symbol name in string table.
Errors    : 1

nbproject/Makefile-default.mk:91: recipe for target 'build/default/production/Dummy\.cof' failed
make[2]: Leaving directory 'C:/Users/Michel Jasmin/MPLABXProjects/Dummy.X'
nbproject/Makefile-default.mk:78: recipe for target '.build-conf' failed
make[1]: Leaving directory 'C:/Users/Michel Jasmin/MPLABXProjects/Dummy.X'
nbproject/Makefile-impl.mk:39: recipe for target '.build-impl' failed

BUILD FAILED (exit value 2, total time: 1s)
The 3 failures points to :

Code:
    ${MKDIR} ${OBJECTDIR} 

    ${MAKE}  -f nbproject/Makefile-default.mk dist/${CND_CONF}/${IMAGE_TYPE}/Dummy.X.${IMAGE_TYPE}.${OUTPUT_SUFFIX}

    ${MAKE} -f nbproject/Makefile-${CONF}.mk SUBPROJECTS=${SUBPROJECTS} .build-conf
Does anyone encouter this?