Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1042261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:28:50+00:00 2026-05-16T15:28:50+00:00

Could you please give me an example of writing a custom gcc preprocessor? My

  • 0

Could you please give me an example of writing a custom gcc preprocessor?

My goal is to replace SID(“foo”) alike macros with appropriate CRC32 computed values. For any other macro I’d like to use the standard cpp preprocessor.

It looks like it’s possible to achieve this goal using -no-integrated-cpp -B options, however I can’t find any simple example of their usage.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:28:51+00:00Added an answer on May 16, 2026 at 3:28 pm

    Warning: dangerous and ugly hack. Close your eyes now You can hook your own preprocessor by adding the ‘-no-integrated-cpp’ and ‘-B’ switches to the gcc command line. ‘-no-integrated-cpp’ means that gcc does search in the ‘-B’ path for its preprocessors before it uses its internal search path. The invocations of the preprocessor can be identified if the ‘cc1’, ‘cc1plus’ or ‘cc1obj’ programs (these are the C, C++ and Objective-c compilers) are invoked with the ‘-E’ option. You can do your own preprocessing when you see this option. When there is no ‘-E’ option pass all the parameters to the original programs. When there is such an option, you can do your own preprocessing, and pass the manipulated file to the original compiler.

    It looks like this:

    > cat cc1
    #!/bin/sh
    
    echo "My own special preprocessor -- $@"
    
    /usr/lib/gcc/i486-linux-gnu/4.3/cc1 $@
    exit $?
    
    > chmod 755 cc1
    > gcc -no-integrated-cpp -B$PWD x.c
    My own special preprocessor -- -E -quiet x.c -mtune=generic -o /tmp/cc68tIbc.i
    My own special preprocessor -- -fpreprocessed /tmp/cc68tIbc.i -quiet -dumpbase x.c -mtune=generic -auxbase x -o /tmp/cc0WGHdh.s
    

    This example calls the original preprocessor, but prints an additional message and the parameters. You can replace the script by your own preprocessor.

    The bad hack is over. You can open your eyes now.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Could you, please, give a code snippet showing how to use Lua embedded in
Could somebody please do a rundown of how to programmatically encrypt a config-file in
Could somebody please name a few. I could given time, but this is for
Could someone please demystify interfaces for me or point me to some good examples?
Could you please show me the C# Equivalent of this VB.NET code: Public Partial
Could you please explain what the practical usage is for the internal keyword in
Could somebody please point me in the right direction for learning how to do
Could someone please tell me which objects types can be tested using Regular Expressions
Could someone please explain the best way to connect to an Interbase 7.1 database
Could somebody please explain to me what happens here? I am creating a binding

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.