Build failed at Ubuntu 16.04 - error: use of undeclared identifier 'uselocale'
cryptomadco opened this issue · 1 comments
cryptomadco commented
Hi .
After installing dependencies I ran the following command :
./build.sh -m --no-install-dependencies
But I have the following problem :
Detected platform: Linux
HEAD is now at 19bd751... Update version
Building fmt
-- CMake version: 3.21.2
-- Version: 6.2.1
-- Build type: RelWithDebInfo
-- CXX_STANDARD: 11
-- Required features: cxx_variadic_templates
-- Configuring done
-- Generating done
-- Build files have been written to: /home/crypto/proxygen/proxygen/_build/deps/fmt/build
Consolidate compiler generated dependencies of target fmt
[ 33%] Building CXX object CMakeFiles/fmt.dir/src/format.cc.o
[ 66%] Building CXX object CMakeFiles/fmt.dir/src/os.cc.o
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/os.cc:13:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/os.h:17:
In file included from /usr/include/c++/v1/clocale:39:
In file included from /usr/include/locale.h:11:
In file included from /usr/include/c++/v1/locale:182:
/usr/include/c++/v1/__locale:70:20: error: use of undeclared identifier 'LC_COLLATE_MASK'
collate = LC_COLLATE_MASK,
^
/usr/include/c++/v1/__locale:71:20: error: use of undeclared identifier 'LC_CTYPE_MASK'
ctype = LC_CTYPE_MASK,
^
/usr/include/c++/v1/__locale:72:20: error: use of undeclared identifier 'LC_MONETARY_MASK'
monetary = LC_MONETARY_MASK,
^
/usr/include/c++/v1/__locale:73:20: error: use of undeclared identifier 'LC_NUMERIC_MASK'
numeric = LC_NUMERIC_MASK,
^
/usr/include/c++/v1/__locale:74:20: error: use of undeclared identifier 'LC_TIME_MASK'
time = LC_TIME_MASK,
^
/usr/include/c++/v1/__locale:75:20: error: use of undeclared identifier 'LC_MESSAGES_MASK'
messages = LC_MESSAGES_MASK,
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/os.cc:13:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/os.h:17:
In file included from /usr/include/c++/v1/clocale:39:
In file included from /usr/include/locale.h:11:
/usr/include/c++/v1/locale:230:54: error: use of undeclared identifier 'freelocale'; did you mean 'timelocal'?
typedef _VSTD::unique_ptr<__locale_struct, decltype(&freelocale)> __locale_unique_ptr;
^
/usr/include/time.h:322:15: note: 'timelocal' declared here
extern time_t timelocal (struct tm *__tp) __THROW;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/os.cc:13:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/os.h:17:
In file included from /usr/include/c++/v1/clocale:39:
In file included from /usr/include/locale.h:11:
/usr/include/c++/v1/locale:232:54: error: use of undeclared identifier 'uselocale'
typedef _VSTD::unique_ptr<__locale_struct, decltype(&uselocale)> __locale_raii;
^
/usr/include/c++/v1/locale:252:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:252:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:263:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:263:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:274:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:274:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:286:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:286:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:297:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:297:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:309:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:19:11: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
const std::locale& loc, buffer<Char>& buf,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:28:39: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
std::basic_string<Char> vformat(const std::locale& loc,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:39:11: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
const std::locale& loc, const S& format_str,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:45:45: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
inline std::basic_string<Char> format(const std::locale& loc,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:55:48: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
inline OutputIt vformat_to(OutputIt out, const std::locale& loc,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
In file included from /usr/include/c++/v1/__locale:21:
/usr/include/locale.h:66:47: error: no type named 'locale' in namespace 'std'; did you mean 'locale_t'?
inline OutputIt format_to(OutputIt out, const std::locale& loc,
^~~~~
/usr/include/xlocale.h:42:20: note: 'locale_t' declared here
typedef __locale_t locale_t;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
In file included from /usr/include/c++/v1/locale:182:
/usr/include/c++/v1/__locale:70:20: error: use of undeclared identifier 'LC_COLLATE_MASK'
collate = LC_COLLATE_MASK,
^
/usr/include/c++/v1/__locale:71:20: error: use of undeclared identifier 'LC_CTYPE_MASK'
ctype = LC_CTYPE_MASK,
^
/usr/include/c++/v1/__locale:72:20: error: use of undeclared identifier 'LC_MONETARY_MASK'
monetary = LC_MONETARY_MASK,
^
/usr/include/c++/v1/__locale:73:20: error: use of undeclared identifier 'LC_NUMERIC_MASK'
numeric = LC_NUMERIC_MASK,
^
/usr/include/c++/v1/__locale:74:20: error: use of undeclared identifier 'LC_TIME_MASK'
time = LC_TIME_MASK,
^
/usr/include/c++/v1/__locale:75:20: error: use of undeclared identifier 'LC_MESSAGES_MASK'
messages = LC_MESSAGES_MASK,
^
20 errors generated.
CMakeFiles/fmt.dir/build.make:89: recipe for target 'CMakeFiles/fmt.dir/src/os.cc.o' failed
make[2]: *** [CMakeFiles/fmt.dir/src/os.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
/usr/include/c++/v1/locale:230:54: error: use of undeclared identifier 'freelocale'; did you mean 'timelocal'?
typedef _VSTD::unique_ptr<__locale_struct, decltype(&freelocale)> __locale_unique_ptr;
^
/usr/include/time.h:322:15: note: 'timelocal' declared here
extern time_t timelocal (struct tm *__tp) __THROW;
^
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/src/format.cc:8:
In file included from /home/crypto/proxygen/proxygen/_build/deps/fmt/include/fmt/format-inl.h:21:
/usr/include/c++/v1/locale:232:54: error: use of undeclared identifier 'uselocale'
typedef _VSTD::unique_ptr<__locale_struct, decltype(&uselocale)> __locale_raii;
^
/usr/include/c++/v1/locale:252:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:252:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:263:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:263:43: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
/usr/include/c++/v1/locale:274:27: error: use of undeclared identifier 'uselocale'
__locale_raii __current(uselocale(__l), uselocale);
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
CMakeFiles/fmt.dir/build.make:75: recipe for target 'CMakeFiles/fmt.dir/src/format.cc.o' failed
make[2]: *** [CMakeFiles/fmt.dir/src/format.cc.o] Error 1
CMakeFiles/Makefile2:82: recipe for target 'CMakeFiles/fmt.dir/all' failed
make[1]: *** [CMakeFiles/fmt.dir/all] Error 2
Makefile:155: recipe for target 'all' failed
make: *** [all] Error 2
Is it a problem with builing fmt?
Any workaround to this ?
Thanks
afrind commented
Sorry for not responding to this issue in a timely way. Please try again if it's still a problem and open a new issue.