diff options
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/solaris.mk | 2 | ||||
-rw-r--r-- | solenv/gbuild/platform/unxgcc.mk | 2 | ||||
-rw-r--r-- | solenv/gcc-wrappers/wrapper.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/solenv/gbuild/platform/solaris.mk b/solenv/gbuild/platform/solaris.mk index 318e630547ab..a781a6c88a48 100644 --- a/solenv/gbuild/platform/solaris.mk +++ b/solenv/gbuild/platform/solaris.mk @@ -73,7 +73,7 @@ endif ifeq ($(COM_GCC_IS_CLANG),) gb_GccLess460 := $(shell expr $(GCC_VERSION) \< 406) -#At least SLED 10.2 gcc 4.3 overly agressively optimizes uno::Sequence into +#At least SLED 10.2 gcc 4.3 overly aggressively optimizes uno::Sequence into #junk, so only strict-alias on >= 4.6.0 gb_StrictAliasingUnsafe := $(gb_GccLess460) diff --git a/solenv/gbuild/platform/unxgcc.mk b/solenv/gbuild/platform/unxgcc.mk index 0de4a72e41e6..6d89207bf3ee 100644 --- a/solenv/gbuild/platform/unxgcc.mk +++ b/solenv/gbuild/platform/unxgcc.mk @@ -58,7 +58,7 @@ else gb_CXXFLAGS += -Wnon-virtual-dtor endif -#At least SLED 10.2 gcc 4.3 overly agressively optimizes uno::Sequence into +#At least SLED 10.2 gcc 4.3 overly aggressively optimizes uno::Sequence into #junk, so only strict-alias on >= 4.6.0 gb_StrictAliasingUnsafe := $(gb_GccLess460) diff --git a/solenv/gcc-wrappers/wrapper.cxx b/solenv/gcc-wrappers/wrapper.cxx index a3bd84a47d69..ba22e1642630 100644 --- a/solenv/gcc-wrappers/wrapper.cxx +++ b/solenv/gcc-wrappers/wrapper.cxx @@ -20,7 +20,7 @@ string getexe(string exename) { size_t cmdlen; _dupenv_s(&cmdbuf,&cmdlen,exename.c_str()); if(!cmdbuf) { - cout << "Error " << exename << " not defined. Did you forget to source the enviroment?" << endl; + cout << "Error " << exename << " not defined. Did you forget to source the environment?" << endl; exit(1); } string command(cmdbuf); |