Luajit 2.0.0beta9 has patches upstream that fix the compile errors
with clang and llvm, thanks to the help of the developer, Paul.
Remove the patches at 2.0.0beta10 due out at the end of April.
All changes were discussed in several emails. The plan is:
* Change the Hotfix patch to apply only to stable.
* Patch for missing /usr/include/unwind.h on 10.6.8 with clang.
* Patch src/Makefile to not call -dumpspec. Clang doesn't have it.
* Remove the instruction to the user to `sudo ln -s`.
* Remove the fails_with_llvm. It compiles against llvm 2336.
* Inreplaces should persist through version updates.
* Respect the developer's choice that optimization is best at -O2.
* Remove the hardcoded -O2 so we can set -O2 or switch to -Og.
* Override the hardcoded CC=gcc. Use ENV.cc.
* Remove the -march=i686 from CCOPT_X86. We set accurate march.
* Use args for clarity.
* For debug builds using clang, use -Og. See clang man page.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
SimGrid is a toolkit that provides core functionalities for the
simulation of distributed applications in heterogeneous distributed
environments. The specific goal of the project is to facilitate research
in the area of parallel and distributed large scale systems, such as
Grids, P2P systems and clouds. Its use cases encompass heuristic
evaluation, application prototyping or even real application development
and tuning. (from the project homepage http://simgrid.gforge.inria.fr/)
ClosesHomebrew/homebrew#9809.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit upgrades mariadb's formula to 5.3.5 GA, force use of LLVM
and make it correctly depend on brew's readline.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
"MiniSat is a minimalistic, open-source SAT solver, developed to help
researchers and developers alike to get started on SAT."
[http://minisat.se]
ClosesHomebrew/homebrew#8011.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Moved setting ENV['LD'] = ENV['CXX'] to after ENV.llvm is (possibly) set. Otherwise ENV['LD'] might end up as llvm-gcc rather than the expected CXX version. Verified that this fixed the issue I had installing QT on my machine. Fixes issue Homebrew/homebrew#11202. See also Homebrew/homebrew#11198.
By the comment above where ENV.llvm is set, maybe it was supposed to be using clang rather than llvm-gcc though because my Xcode is 3.2.6. clang is "Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn)", and llvm-gcc is "i686-apple-darwin10-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.6)".
In any case, moving these two lines made it compile and install fine on my system.
FixesHomebrew/homebrew#11261, Homebrew/homebrew#11202, Homebrew/homebrew#11198.