Opened 8 years ago
Closed 7 years ago
#52667 closed defect (fixed)
acl2 misuses platform
Reported by: | jeremyhu (Jeremy Huddleston Sequoia) | Owned by: | gwright@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 2.3.4 |
Keywords: | Cc: | ryandesign (Ryan Carsten Schmidt), JacksonIsaac (Jackson Isaac) | |
Port: | acl2 |
Description
math/acl2/Portfile contains:
platform i386 { global ccl_ext set ccl_ext dx86cl } platform x86_64 { global ccl_ext set ccl_ext dx86cl64 global ccl_script set ccl_script ccl64 } platform powerpc { global ccl_ext set ccl_ext dppccl } platform ppc64 { global ccl_ext set ccl_ext dppccl64 global ccl_script set ccl_script ccl64 }
That’s not doing what the author presumably expects.
Change History (2)
comment:1 Changed 7 years ago by ryandesign (Ryan Carsten Schmidt)
Cc: | JacksonIsaac added |
---|
comment:2 Changed 7 years ago by JacksonIsaac (Jackson Isaac)
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
To clarify:
i386
andpowerpc
are valid platforms.x86_64
andppc64
are not. (Unless we change that, as proposed in #56295.)