mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 12:34:35 +03:00
Renamed CodeGen to ExternalTool. Moved logger constants from asmjit namespace to asmjit::Logger. Moved AssemblerFeature constants from asmjit namespace to asmjit::Assembler. Added noexcept to most APIs that are not intended to throw. Added memory utilities that can read/write to unaligned memory location (ongoing ARM support). Removed unimplemented instruction scheduler, will be added back when it's working.
10 lines
231 B
Bash
10 lines
231 B
Bash
#!/bin/sh
|
|
|
|
ASMJIT_CURRENT_DIR=`pwd`
|
|
ASMJIT_BUILD_DIR="build_makefiles_dbg"
|
|
|
|
mkdir ../${ASMJIT_BUILD_DIR}
|
|
cd ../${ASMJIT_BUILD_DIR}
|
|
cmake .. -G"Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DASMJIT_BUILD_TEST=1
|
|
cd ${ASMJIT_CURRENT_DIR}
|