subread: removing mtune arg to compiler (#40197)
This commit is contained in:
		| @@ -14,6 +14,7 @@ class Subread(MakefilePackage): | |||||||
| 
 | 
 | ||||||
|     homepage = "https://subread.sourceforge.net/" |     homepage = "https://subread.sourceforge.net/" | ||||||
|     url = "https://sourceforge.net/projects/subread/files/subread-1.5.2/subread-1.5.2-source.tar.gz/download" |     url = "https://sourceforge.net/projects/subread/files/subread-1.5.2/subread-1.5.2-source.tar.gz/download" | ||||||
|  |     maintainers("snehring") | ||||||
| 
 | 
 | ||||||
|     version("2.0.6", sha256="f0fdda6b98634d2946028948c220253e10a0f27c7fa5f24913b65b3ac6cbb045") |     version("2.0.6", sha256="f0fdda6b98634d2946028948c220253e10a0f27c7fa5f24913b65b3ac6cbb045") | ||||||
|     version("2.0.4", sha256="c54b37ed83b34318d8f119b5c02fb9d0a65c811195bcc9e1745df6daf74ca2db") |     version("2.0.4", sha256="c54b37ed83b34318d8f119b5c02fb9d0a65c811195bcc9e1745df6daf74ca2db") | ||||||
| @@ -31,12 +32,11 @@ def build(self, spec, prefix): | |||||||
|         with working_dir("src"): |         with working_dir("src"): | ||||||
|             if plat.startswith("linux"): |             if plat.startswith("linux"): | ||||||
|                 filter_file("CC_EXEC = gcc", "CC_EXEC = {0}".format(spack_cc), "Makefile.Linux") |                 filter_file("CC_EXEC = gcc", "CC_EXEC = {0}".format(spack_cc), "Makefile.Linux") | ||||||
|                 if spec.target.family == "aarch64": |                 filter_file("-mtune=core2", "", "Makefile.Linux") | ||||||
|                     filter_file("-mtune=core2", "", "Makefile.Linux") |                 if spec.satisfies("@1.6.2:"): | ||||||
|                     if spec.satisfies("@1.6.2:2.0.0"): |                     filter_file("-mtune=core2", "", "longread-one/Makefile") | ||||||
|                         filter_file("-mtune=core2", "", "longread-one/Makefile") |                 if spec.satisfies("@1.6.0"): | ||||||
|                     elif spec.satisfies("@1.6.0"): |                     filter_file("-mtune=core2", "", "longread-mapping/Makefile") | ||||||
|                         filter_file("-mtune=core2", "", "longread-mapping/Makefile") |  | ||||||
|                 make("-f", "Makefile.Linux") |                 make("-f", "Makefile.Linux") | ||||||
|             elif plat.startswith("darwin"): |             elif plat.startswith("darwin"): | ||||||
|                 make("-f", "Makefile.MacOS") |                 make("-f", "Makefile.MacOS") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 snehring
					snehring