Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 2 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Supporting #Include (And Other C Preprocessor Directives)
Apjjm Offline
Is easy to say

Posts: 496
Threads: 18
Joined: Apr 2011
Reputation: 52
#11
RE: Supporting #Include (And Other C Preprocessor Directives)

There is a bug in the preprocessor (source) with the -C (comments) flag, this will cause single lines with comments on the end to be deleted / commented out. The fix is simply to remove the switch from the batch file if you have already downloaded it. I am uploading a fixed version now too. This means comments won't be in the output file (but this shouldn't be an issue, as you will be editing files with comments in just fine).

Fixed batch script:
@ECHO OFF
::Batch file to aid HPS preprocessing - Apjjm.
::USAGE:
::%1 - Directory of file to pre-process (and where output should go)
::%2 - Name of file to pre-process
::%3 - Name of file to output (the pre-processed file)

::PATH TO MCPP. You probably won't need to change this.
SET MCPP="%~DP0\mcpp-2.7.2-bin\mcpp-2.7.2\bin\mcpp.exe"

::ERROR FILE NAME
SET ERRF="errors.txt"

:Main
cD "%1"
%MCPP% "%2" "%3" -P -W0 2> %ERRF%
CALL :ShowErrors %ERRF%
goto :eof


:ShowErrors
IF NOT "%~z1" =="0" ( ECHO ERRORS FOUND PRE-PROCESSING - SEE %1
              ECHO ====================================
                      TYPE %1
                      PAUSE )
goto :eof

Edit: First post updated with new link.
(This post was last modified: 05-07-2012, 02:46 AM by Apjjm.)
05-07-2012, 02:43 AM
Find




Users browsing this thread: 1 Guest(s)