0

I find Linaro toolchain in https://www.linaro.org/downloads/

but the files (such as gcc-linaro-6.2.1-2016.11-i686-mingw32_arm-linux-gnueabihf.tar.xz ) format tar.xz contains symbolic links.

How can .tar.xz be extracted in windows ?

Thank you,

2 Answers 2

2

You will have to run the following from your mingw environment:

tar xf gcc-linaro-6.2.1-2016.11-i686-mingw32_arm-linux-gnueabihf.tar.xz
0

For me also unzipping with 7zip (executed as administrator!) worked. When you unzip without administrator-rights you get an error in 7zip after unzipping.

It worked and created *.o and *.a files like crtbegin.o, crtend.o, libgcc.a, libgcov.a, ... in <path_to_your_extracted_compiler>\lib\gcc<compilername><version>\

Due to this files i assume that the symbolic links are created.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.