Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » Eye detection using Haarcascades in c++
Eye detection using Haarcascades in c++ [message #1786014] Tue, 24 April 2018 06:55 Go to next message
Nimya Nampoothiri is currently offline Nimya NampoothiriFriend
Messages: 9
Registered: April 2018
Junior Member
When I am trying to run an OpenCv program using HarrCascades for eye detection following error occurs :

12:05:13 **** Incremental Build of configuration Release for project SampleImage ****
make all
Building file: ../Main.cpp
Invoking: GCC C++ Compiler
g++ -I/usr/local/Cellar/opencv/3.4.1_2/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -O3 -Wall -c -fmessage-length=0 -std=c++11 -MMD -MP -MF"Main.d" -MT"Main.o" -o "Main.o" "../Main.cpp"
In file included from ../Main.cpp:1:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv/cv.h:63:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/core_c.h:48:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/types_c.h:59:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cvdef.h:91:
/usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/hal/interface.h:42:14: error: unknown type name 'uint32_t'
typedef uint32_t uint;
^
/usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/hal/interface.h:61:12: error: unknown type name 'int64_t'
typedef int64_t int64;
^
/usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/hal/interface.h:62:12: error: unknown type name 'uint64_t'
typedef uint64_t uint64;
^
In file included from ../Main.cpp:1:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv/cv.h:63:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/core_c.h:48:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/types_c.h:59:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cvdef.h:202:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cv_cpu_dispatch.h:143:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/emmintrin.h:27:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/xmmintrin.h:39:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/mm_malloc.h:27:
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:111:82: error: use of undeclared identifier 'labs'; did you mean 'abs'?
inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:111:44: note: 'abs' declared here
inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:113:81: error: use of undeclared identifier 'llabs'
inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:35: error: unknown type name 'ldiv_t'
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:95: error: use of undeclared identifier 'ldiv'; did you mean 'div'?
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:42: note: 'div' declared here
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:118:34: error: unknown type name 'lldiv_t'
inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:118:94: error: use of undeclared identifier 'lldiv'
inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);}
^
In file included from ../Main.cpp:1:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv/cv.h:63:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/core_c.h:48:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/types_c.h:59:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cvdef.h:202:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cv_cpu_dispatch.h:143:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/emmintrin.h:27:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/xmmintrin.h:39:
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/mm_malloc.h:49:12: error: use of undeclared identifier 'malloc'
return malloc(__size);
^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/9.1.0/include/mm_malloc.h:71:3: error: use of undeclared identifier 'free'
free(__p);
^
In file included from ../Main.cpp:1:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv/cv.h:63:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/core_c.h:48:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/types_c.h:59:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cvdef.h:447:
In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/array:107:
In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/utility:202:
In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/cstring:61:
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:74:64: error: use of undeclared identifier 'strchr'
char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:81:75: error: use of undeclared identifier 'strpbrk'
char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:88:65: error: use of undeclared identifier 'strrchr'; did you mean 'strchr'?
char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:76:13: note: 'strchr' declared here
const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:95:76: error: use of undeclared identifier 'memchr'
void* __libcpp_memchr(const void* __s, int __c, size_t __n) {return (void*)memchr(__s, __c, __n);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:102:74: error: use of undeclared identifier 'strstr'; did you mean 'strchr'?
char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:78:13: note: 'strchr' declared here
char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:102:74: error: no matching function for call to 'strchr'
char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:78:13: note: candidate disabled: <no message provided>
char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:102:81: error: cannot initialize a parameter of type 'char *' with an lvalue of type 'const char *'
char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);}
^~~~
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:78:32: note: passing argument to parameter '__s' here
char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
^
In file included from ../Main.cpp:1:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv/cv.h:63:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/core_c.h:48:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/types_c.h:59:
In file included from /usr/local/Cellar/opencv/3.4.1_2/include/opencv2/core/cvdef.h:447:
In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/array:107:
In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/utility:202:
/Library/Developer/CommandLineTools/usr/include/c++/v1/cstring:70:9: error: no member named 'memcpy' in the global namespace; did you mean 'memchr'?
using ::memcpy;
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/string.h:97:13: note: 'memchr' declared here
const void* memchr(const void* __s, int __c, size_t __n) {return __libcpp_memchr(__s, __c, __n);}
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make: *** [Main.o] Error 1

12:05:14 Build Finished (took 802ms)


Similar type of error is generating for most of my Opencv programs in c++
Re: Eye detection using Haarcascades in c++ [message #1786043 is a reply to message #1786014] Tue, 24 April 2018 17:24 Go to previous messageGo to next message
David VavraFriend
Messages: 1426
Registered: October 2012
Senior Member
uint32_t, int64_t, uint64_t, and others are define in <cstdint>

labs and others are defined in <cstdlib>

Search the web for the rest.

UPDATE:
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h is either
used too late or doesn't have the definitions found in <cstdlb>
same for /Library/Developer/CommandLineTools/usr/include/c++/v1/string.h

Maybe you should remove the -I flags on the compile and let the compiler search its builtins instead

OTOH, if you are using OS/X you might want to search for problems with Developer/CommandLineTools and how to fix them

[Updated on: Tue, 24 April 2018 17:52]

Report message to a moderator

Re: Eye detection using Haarcascades in c++ [message #1786064 is a reply to message #1786043] Wed, 25 April 2018 06:13 Go to previous messageGo to next message
Nimya Nampoothiri is currently offline Nimya NampoothiriFriend
Messages: 9
Registered: April 2018
Junior Member
I tried. Some Errors got solved but still the main error persists.

10:39:01 **** Incremental Build of configuration Release for project SampleImage ****
make all
Building file: ../Main.cpp
Invoking: GCC C++ Compiler
g++ -I/usr/local/Cellar/opencv/3.4.1_2/include -I/Library/Developer/CommandLineTools/usr/include -I/Library/Developer/CommandLineTools/usr/include/c++/v1 -O3 -Wall -c -fmessage-length=0 -std=c++11 -MMD -MP -MF"Main.d" -MT"Main.o" -o "Main.o" "../Main.cpp"
In file included from ../Main.cpp:1:
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:111:82: error: use of undeclared identifier 'labs'; did you mean 'abs'?
inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:111:44: note: 'abs' declared here
inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:113:81: error: use of undeclared identifier 'llabs'
inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:35: error: unknown type name 'ldiv_t'
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:95: error: use of undeclared identifier 'ldiv'; did you mean 'div'?
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:116:42: note: 'div' declared here
inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:118:34: error: unknown type name 'lldiv_t'
inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:118:94: error: use of undeclared identifier 'lldiv'
inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);}
^
In file included from ../Main.cpp:3:
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:733:41: error: no member named 'fabsf' in the global namespace
abs(float __lcpp_x) _NOEXCEPT {return ::fabsf(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:737:42: error: no member named 'fabs' in the global namespace; did you mean 'abs'?
abs(double __lcpp_x) _NOEXCEPT {return ::fabs(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/stdlib.h:111:44: note: 'abs' declared here
inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);}
^
In file included from ../Main.cpp:3:
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:741:47: error: no member named 'fabsl' in the global namespace
abs(long double __lcpp_x) _NOEXCEPT {return ::fabsl(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:747:93: error: no member named 'acosf' in the global namespace; did you mean 'acos'?
inline _LIBCPP_INLINE_VISIBILITY float acos(float __lcpp_x) _NOEXCEPT {return ::acosf(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:747:46: note: 'acos' declared here
inline _LIBCPP_INLINE_VISIBILITY float acos(float __lcpp_x) _NOEXCEPT {return ::acosf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:748:93: error: no member named 'acosl' in the global namespace; did you mean 'acos'?
inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __lcpp_x) _NOEXCEPT {return ::acosl(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:747:46: note: 'acos' declared here
inline _LIBCPP_INLINE_VISIBILITY float acos(float __lcpp_x) _NOEXCEPT {return ::acosf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:754:38: error: call to 'acos' is ambiguous
acos(_A1 __lcpp_x) _NOEXCEPT {return ::acos((double)__lcpp_x);}
^~~~~~
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:747:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY float acos(float __lcpp_x) _NOEXCEPT {return ::acosf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:748:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __lcpp_x) _NOEXCEPT {return ::acosl(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:759:93: error: no member named 'asinf' in the global namespace; did you mean 'asin'?
inline _LIBCPP_INLINE_VISIBILITY float asin(float __lcpp_x) _NOEXCEPT {return ::asinf(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:759:46: note: 'asin' declared here
inline _LIBCPP_INLINE_VISIBILITY float asin(float __lcpp_x) _NOEXCEPT {return ::asinf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:760:93: error: no member named 'asinl' in the global namespace; did you mean 'asin'?
inline _LIBCPP_INLINE_VISIBILITY long double asin(long double __lcpp_x) _NOEXCEPT {return ::asinl(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:759:46: note: 'asin' declared here
inline _LIBCPP_INLINE_VISIBILITY float asin(float __lcpp_x) _NOEXCEPT {return ::asinf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:766:38: error: call to 'asin' is ambiguous
asin(_A1 __lcpp_x) _NOEXCEPT {return ::asin((double)__lcpp_x);}
^~~~~~
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:759:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY float asin(float __lcpp_x) _NOEXCEPT {return ::asinf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:760:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY long double asin(long double __lcpp_x) _NOEXCEPT {return ::asinl(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:771:93: error: no member named 'atanf' in the global namespace; did you mean 'atan'?
inline _LIBCPP_INLINE_VISIBILITY float atan(float __lcpp_x) _NOEXCEPT {return ::atanf(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:771:46: note: 'atan' declared here
inline _LIBCPP_INLINE_VISIBILITY float atan(float __lcpp_x) _NOEXCEPT {return ::atanf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:772:93: error: no member named 'atanl' in the global namespace; did you mean 'atan'?
inline _LIBCPP_INLINE_VISIBILITY long double atan(long double __lcpp_x) _NOEXCEPT {return ::atanl(__lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:771:46: note: 'atan' declared here
inline _LIBCPP_INLINE_VISIBILITY float atan(float __lcpp_x) _NOEXCEPT {return ::atanf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:778:38: error: call to 'atan' is ambiguous
atan(_A1 __lcpp_x) _NOEXCEPT {return ::atan((double)__lcpp_x);}
^~~~~~
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:771:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY float atan(float __lcpp_x) _NOEXCEPT {return ::atanf(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:772:46: note: candidate function
inline _LIBCPP_INLINE_VISIBILITY long double atan(long double __lcpp_x) _NOEXCEPT {return ::atanl(__lcpp_x);}
^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:783:116: error: no member named 'atan2f' in the global namespace; did you mean 'atan2'?
inline _LIBCPP_INLINE_VISIBILITY float atan2(float __lcpp_y, float __lcpp_x) _NOEXCEPT {return ::atan2f(__lcpp_y, __lcpp_x);}
~~^
/Library/Developer/CommandLineTools/usr/include/c++/v1/math.h:783:46: note: 'atan2' declared here
inline _LIBCPP_INLINE_VISIBILITY float atan2(float __lcpp_y, float __lcpp_x) _NOEXCEPT {return ::atan2f(__lcpp_y, __lcpp_x);}
^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make: *** [Main.o] Error 1

10:39:02 Build Finished (took 825ms)



I want to mention one more thing , All these issue I am facing is after updation of my Xcode in macOS Sierra to Version 9.3 (9E145)
Re: Eye detection using Haarcascades in c++ [message #1786075 is a reply to message #1786064] Wed, 25 April 2018 08:32 Go to previous messageGo to next message
David VavraFriend
Messages: 1426
Registered: October 2012
Senior Member
The problem is with /Library/Developer/CommandLineTools.
It seems confined to OS/X.

It is not an Eclipse/CDT problem so is out of scope for this forum.
This will occur even if you execute the compile from a command line outside of Eclipse.

You need to post this problem in a more appropriate forum.
Try stackoverflow.com or search for "Library/Developer/CommandLineTools problems".

Good luck.


[Updated on: Wed, 25 April 2018 08:37]

Report message to a moderator

Re: Eye detection using Haarcascades in c++ [message #1786263 is a reply to message #1786075] Sat, 28 April 2018 14:33 Go to previous message
Nimya Nampoothiri is currently offline Nimya NampoothiriFriend
Messages: 9
Registered: April 2018
Junior Member
I have tried

$ xcode-select -p
/Applications/Xcode.app/Contents/Developer

$ gcc
clang: error: no input files

$ xcode-select -p
/Applications/Xcode.app/Contents/Developer

$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.1.0 (clang-902.0.39.1)
Target: x86_64-apple-darwin17.5.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin

Everything is Fine with Xcode and I am able to make application on that.

[Updated on: Sat, 28 April 2018 14:37]

Report message to a moderator

Previous Topic:Resolving preprocessor directive errors
Next Topic:C++14 and C++17 support
Goto Forum:
  


Current Time: Fri Mar 29 09:58:03 GMT 2024

Powered by FUDForum. Page generated in 0.02839 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top