Search code examples
c++stringc++11environment-variablesstring-literals

Proper setting a local environment variable in C++


In my code I'm using the following:

putenv("TZ=UTC");
tzset();

to set the timezone.

Declaration of putenv() (this answer recommended it to set the environment variable):

int putenv(char *string);

The buildsystem I'm using sets compiler flags -Wall -Wextra -Werror -std=c++0x and due to that I'm getting the error:

timeGateway.cpp:80:18: error: ISO C++ forbids converting a string constant to 'char*' [-Werror=write-strings]
   putenv("TZ=UTC");
                  ^

I know that this error can be suppressed by using:

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
  putenv("TZ=UTC");
#pragma GCC diagnostic pop

But this is very ugly.

My question: what is a proper way to set an environment variable in C++?


Solution

  • putenv normally allows the string to be changed after the call to putenv and that actually automatically changes the environment. That is the reason why the prototype declares a char * instead of a const char *, but the system will not change the passed string.

    So this is one of the rare correct use cases for a const cast:

    putenv(const_cast<char *>("TZ=UTC"));
    

    Alternatively, you could use setenv that takes const char * parameters:

    setenv("TZ", "UTC", 1);