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 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 am looking for a free static checker for C99 code (including GCC extensions)
I'm in the process of porting a large C++ application from Linux (gcc) to
I'm trying to setup Boost 1.42 in our system. I need Boost to compile
I have an application which was developed under Windows, but for gcc. The code
I want to use boost::thread_specific_ptr but need to know what to add to my
I am trying to incorporate a libtool-based package into a project of my own,
I tried the following code on gcc 4.4.5. If the member 'data' is not
We're having some discussion lately about the way we handle .d files for dependencies
I'm trying to link the LizardTech GeoExpress DSDK into my own application. I use
What could cause this? Here's the stack trace: #0 0x0645c0f5 in std::_Rb_tree_increment (__x=0x83ee5b0) at

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.