We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
The example about c++ progran under DS-5 CPP directory is compiled by me with the armcc ,not gcc. But there is an error when compile。
Error: C3321E: automatic configuration failed - could not determine configuration from GCC
make: *** [arm_linux_config.xml] Error 1
I do not know the reason. Please tell me the answer. Thanks!
Hi zgyypmmm,
Can you go into more detail about where you got the example/project from?
The reason this error occurs is because you're attempting to use the --arm_linux_* configuration options. The way this usually works is to pass the path of GCC and the GNU linker to ARMCC and have it determine from the GCC spec output (gcc -dumpspecs will give you a good example) where the library paths and where the other tool paths live. Unfortunately, this option isn't really supported anymore within ARMCC since it isn't really compatible with modern GCC multilib configurations common on modern Linux distributions.
Is this a bare metal project or something you want to run on Linux?
Ta,
Matt