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

  • SEARCH
  • Home
  • 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 6095705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T12:50:32+00:00 2026-05-23T12:50:32+00:00

Based on gcc: Do I need -D_REENTRANT with pthreads? > echo | g++ -E

  • 0

Based on gcc: Do I need -D_REENTRANT with pthreads?

> echo | g++          -E -dM -c - > singlethreaded
> echo | g++ -pthread -E -dM -c - > multithreaded
> diff singlethreaded multithreaded
39a40
> #define _REENTRANT 1

The author uses the above command to export the options used by the compiler.
I want to know why such a command works in detail:

> echo | g++ -E -dM -c - > singlethreaded

I understand the following parts:

> singlethread # means to redirect the results to the file singlethread
  • 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-23T12:50:32+00:00Added an answer on May 23, 2026 at 12:50 pm

    The -dM option:

    Instead of the normal output, generate
    a list of #define directives for all
    the macros defined during the
    execution of the preprocessor,
    including predefined macros. This
    gives you a way of finding out what is
    predefined in your version of the
    preprocessor.

    The -E option:

    Stop after the preprocessing stage; do
    not run the compiler proper. The
    output is in the form of preprocessed
    source code, which is sent to the
    standard output.

    The -c option causes the compiler to compile but not link. This is superfluous with the -E option.

    The solitary - tells the compiler to read its input from stdin.

    Thus, the command echoes an empty stream to stdout, pipes that empty stream to g++, which then reads the empty stream but runs only the preprocessor, which has been told to ignore the input (empty) and output the complete list of defined preprocessor macros.

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

Sidebar

Related Questions

I'm using a MinGW-based GCC cross-compiler to compile a project which uses SCons as
GCC supports Setjump-longjump (sjlj) and Dwarf2 table-based unwinding (dw2) exception handling models. What is
We are using a legacy compiler, based on gcc 2.6.0, to cross compile for
Hi I'm trying to compile a gcc based code on Xcode with the icc
It's a part of larger code base, which forces -Werror on gcc. This warning
Problem: I am using a big C/C++ code base which works on gcc &
Based on a simple test I ran, I don't think it's possible to put
Based on a few posts I've read concerning version control, it seems people think
Based on all my reading there should be one GC thread to invoke all
Based on their work, how do you distinguish a great SQL developer? Examples might

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.