| Summary: | OpenSSL RSA key generation hangs on x86_64 | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Floris Bos <info> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | buildroot |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | x86_64 | |
| Build: | |||
|
Description
Floris Bos
2009-07-29 14:23:51 UTC
You're right. There are two solutions to fix the issue. The first solution is to use $(ARCH), as you suggested. ARCH is defined by project/Makefile.in. The second solution if to change the test to be ifeq ($(BR2_ARCH),"x86_64") note the double quotes around x86_64. Not sure which one is best, though. It's because BR2_ARCH is a string value, so it contains " chars as well, E.G. the tests have to be written as: ifeq ($(BR2_ARCH),"x86_64") OPENSSL_TARGET_ARCH=x86_64 endif I'll fix it in git - Thanks. Fixed in git (2a966bc) using ARCH |