- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When I download from this site, <https://software.intel.com/en-us/articles/pre-release-license-agreement-for-intel-decimal-floating-point-math-library>, and try to un-tar it, I get:
$ tar xvf IntelRDFPMathLib20U1.tar.gz tar: This does not look like a tar archive tar: Skipping to next header tar: Exiting with failure status due to previous errors
But when I download from the mirror at <http://www.netlib.org/misc/intel/>, I get a copy I can compile. Could someone look into this?
Extra info:
$ cmp IntelRDFPMathLib20U1.tar.gz ~/projects/IntelRDFPMathLib20U1.tar.gz IntelRDFPMathLib20U1.tar.gz ~/projects/IntelRDFPMathLib20U1.tar.gz differ: byte 4, line 1
- Tags:
- Development Tools
- Intel® License Manager for FLEXlm*
- Intel® Software Development Products Registration Center
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How about tar zxvf, or, with extremely old versions, gunzip -c IntelRDFPMathLib20U1.tar.gz | tar xv
It's also included in the gcc source distribution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
$ tar zxvf IntelRDFPMathLib20U1.tar.gz tar: This does not look like a tar archive tar: Skipping to next header tar: Exiting with failure status due to previous errors
What does the compiler have to do with it? It doesn't un-tar. There's something wrong with the tar header.
This one worked, if you add the 'z' flag:
$ gunzip -c IntelRDFPMathLib20U1.tar.gz | tar zxv IntelRDFPMathLib20U1/ IntelRDFPMathLib20U1/eula.txt IntelRDFPMathLib20U1/README IntelRDFPMathLib20U1/EXAMPLES/ ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please submit to Intel® Math Kernel Library forum https://software.intel.com/en-us/forums/intel-math-kernel-library
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page