mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 04:24:37 +03:00
- Compiler no longer works on its own, it requires Assembler. - Labels created by Assembler and Compiler now share their IDs, so they can be used nearly interchangeably without weird side-effects and hacks. - Renamed getError() and setError() to getLastError() and setLastError(). - Renamed compiler nodes to "HL" nodes (preparation for HLStream). - Renamed FuncConv to CallConv. - Function calling convention is now part of FuncPrototype. - Added a possibility to align by inserting zeros (kAlignZero) - Fixed assertion in X86Compiler that didn't like unhandled function argument(s). - Added Compiler::embedConstPool() helper, which can be handy if you use your own ConstPool. - Code refactorization and other minor changes. - CpuTicks::now() renamed to Utils::getTickCount(). - error.h merged with globals.h - Documentation updates related to recent API changes.
10 lines
189 B
Bash
10 lines
189 B
Bash
#!/bin/sh
|
|
|
|
ASMJIT_CURRENT_DIR=`pwd`
|
|
ASMJIT_BUILD_DIR="build_xcode"
|
|
|
|
mkdir ../${ASMJIT_BUILD_DIR}
|
|
cd ../${ASMJIT_BUILD_DIR}
|
|
cmake .. -G"Xcode" -DASMJIT_BUILD_TEST=1
|
|
cd ${ASMJIT_CURRENT_DIR}
|