| Summary: | Build error for 2.0.9 snapshot on mojave 10.14 | ||
|---|---|---|---|
| Product: | SDL | Reporter: | haxpor |
| Component: | build | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED INVALID | QA Contact: | Sam Lantinga <slouken> |
| Severity: | blocker | ||
| Priority: | P2 | CC: | icculus |
| Version: | 2.0.9 | ||
| Hardware: | x86_64 | ||
| OS: | Other | ||
|
Description
haxpor
2018-10-17 18:30:21 UTC
FYI: build against xcode Version 10.0 (10A255) This doesn't happen here; is there anything strange about how you ran configure, or something wild like it found Xcode 10's compiler but Xcode 9's linker? --ryan.
("make V=1" will show the full command lines of all things make runs.)
--ryan.
(In reply to Ryan C. Gordon from comment #3) > ("make V=1" will show the full command lines of all things make runs.) > > --ryan. Sorry for the spam: it's clear what the problem is: /opt/local/bin/ranlib is not Xcode 10's copy of ranlib. --ryan. Thank you Ryan for fast reply! You're completely right. It's about different copy of ranlib (and others too as I inspected in config.log). The problem is due to Macport automatically injected setting PATH variable in my bash_profile long ago. After remove it, configure script can properly detect the right tools, and build successfully now. Thanks again. |