Lines Matching +full:- +full:djavaexecutable64
20 -------------
34 [prerequisites](https://boringssl.googlesource.com/boringssl/+/HEAD/BUILDING.md#Build-Prerequisites…
49 ##### Building on Linux/OS-X
50 To build in the 64-bit version on a 64-bit machine:
54 cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \
55 -DCMAKE_BUILD_TYPE=Release \
56 -DCMAKE_ASM_FLAGS=-Wa,--noexecstack \
57 -GNinja ..
61 To make a 32-bit build on a 64-bit machine:
65 cmake -DCMAKE_TOOLCHAIN_FILE=../util/32-bit-toolchain.cmake \
66 -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \
67 -DCMAKE_BUILD_TYPE=Release \
68 -DCMAKE_ASM_FLAGS="-Wa,--noexecstack -m32 -msse2" \
69 -GNinja ..
76 compiling 64-bit.
81 edition. To use another edition or a non-standard install path, you'll
84 To build in 64-bit mode, set up with this command line:
92 To build in 32-bit mode, set up with this command line:
100 In either the 64-bit or 32-bit case, run this afterward:
103 cmake -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ^
104 -DCMAKE_BUILD_TYPE=Release ^
105 -DCMAKE_C_FLAGS_RELEASE=/MT ^
106 -DCMAKE_CXX_FLAGS_RELEASE=/MT ^
107 -GNinja ..
112 -------------------------
115 This will run all tests under `openjdk` and `openjdk-integ-tests` with the specified
119 ./gradlew check -DjavaExecutable64=${JAVA7_HOME}/bin/java