File tree Expand file tree Collapse file tree 11 files changed +13
-13
lines changed Expand file tree Collapse file tree 11 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ B. Installing needed packages from respective sources.
76
76
1 . Install the [ Rcpp] ( https://cran.r-project.org/web/packages/Rcpp/index.html ) and [ RInside] ( https://cran.r-project.org/web/packages/RInside/index.html ) packages into this R runtime. These are needed to seamlessly integrate and embed R in C++.
77
77
78
78
1 . Run [ ** build-RExtension.sh** ] ( ./build/linux/build-RExtension.sh ) which will generate: \
79
- - /PATH/TO/ENLISTMENT/build-output/RExtension/linux/release/libRExtension.so.1.1
79
+ - /PATH/TO/ENLISTMENT/build-output/RExtension/linux/release/libRExtension.so.1.2
80
80
81
81
1 . Run [ ** create-R-extension-zip.sh** ] ( ./build/linux/create-RExtension-zip.sh ) which will generate: \
82
82
- /PATH/TO/ENLISTMENT/build-output/RExtension/linux/release/packages/R-lang-extension.zip \
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ function build {
46
46
47
47
# Check the exit code of the compiler and exit appropriately so that build will fail.
48
48
#
49
- check_exit_code " Success: Built libRExtension.so.1.1 " " Error: Failed to build RExtension"
49
+ check_exit_code " Success: Built libRExtension.so.1.2 " " Error: Failed to build RExtension"
50
50
51
51
# Move the generated libs to configuration folder
52
52
#
@@ -57,7 +57,7 @@ function build {
57
57
# This will create the RExtension package with unsigned binaries, this is used for local development and non-release builds. Release
58
58
# builds will call create-RExtension-zip.sh after the binaries have been signed and this will be included in the zip
59
59
#
60
- zip ${TARGET} /R-lang-extension libRExtension.so.1.1
60
+ zip ${TARGET} /R-lang-extension libRExtension.so.1.2
61
61
62
62
check_exit_code " Success: Created R-lang-extension.zip" " Error: Failed to create zip for RExtension"
63
63
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ function build {
20
20
21
21
mkdir -p ${BUILD_OUTPUT} /packages
22
22
cd ${BUILD_OUTPUT}
23
- zip packages/R-lang-extension-linux libRExtension.so.1.1
23
+ zip packages/R-lang-extension-linux libRExtension.so.1.2
24
24
check_exit_code ${BUILD_CONFIGURATION}
25
25
}
26
26
Original file line number Diff line number Diff line change 3
3
cmake_minimum_required (VERSION 3.5 )
4
4
5
5
set (REXTENSION_VERSION_MAJOR "1" )
6
- set (REXTENSION_VERSION_MINOR "1 " )
6
+ set (REXTENSION_VERSION_MINOR "2 " )
7
7
set (REXTENSION_VERSION ${REXTENSION_VERSION_MAJOR} .${REXTENSION_VERSION_MINOR} )
8
8
9
9
# this is what the final library is going to be named
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ function build {
19
19
20
20
pushd ${REXTENSIONTEST_WORKING_DIR} /${CMAKE_CONFIGURATION}
21
21
# Move the generated libs to configuration folder
22
- cp ${REXTENSION_WORKING_DIR} /${CMAKE_CONFIGURATION} /libRExtension.so.1.1 .
22
+ cp ${REXTENSION_WORKING_DIR} /${CMAKE_CONFIGURATION} /libRExtension.so.1.2 .
23
23
./RExtension-test --gtest_output=xml:${ENL_ROOT} /out/TestReport_RExtension-test.xml
24
24
25
25
# Check the exit code of the tests.
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ using namespace std;
37
37
const string x_RExtensionLibName = " libRExtension.dll" ;
38
38
namespace fs = filesystem;
39
39
#else
40
- const string x_RExtensionLibName = " libRExtension.so.1.1 " ;
40
+ const string x_RExtensionLibName = " libRExtension.so.1.2 " ;
41
41
namespace fs = experimental::filesystem;
42
42
#endif // _WIN64
43
43
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ B. Installing needed packages from respective sources.
62
62
1 . Modify [ ** PythonExtensionUtils_linux.cpp** ] ( src/linux/PythonExtensionUtils_linux.cpp ) . Change the version of python on line 97 to the custom python version.
63
63
64
64
1 . Run [ ** build-python-extension.sh** ] ( build/linux/build-python-extension.sh ) which will generate: \
65
- - PATH/TO/ENLISTMENT/build-output/pythonextension/linux/release/libPythonExtension.so.1.1
65
+ - PATH/TO/ENLISTMENT/build-output/pythonextension/linux/release/libPythonExtension.so.1.2
66
66
67
67
1 . Run [ ** create-python-extension-zip.sh** ] ( build/linux/create-python-extension-zip.sh ) which will generate: \
68
68
- PATH/TO/ENLISTMENT/build-output/pythonextension/linux/release/packages/python-lang-extension.zip \
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function build {
42
42
43
43
# Check the exit code of the compiler and exit appropriately so that build will fail.
44
44
#
45
- check_exit_code " Success: Built libPythonExtension.so.1.1 " " Error: Failed to build python extension"
45
+ check_exit_code " Success: Built libPythonExtension.so.1.2 " " Error: Failed to build python extension"
46
46
47
47
# Move the generated libs to configuration folder
48
48
#
@@ -54,7 +54,7 @@ function build {
54
54
# This will create the python extension package with unsigned binaries, this is used for local development and non-release builds. release
55
55
# builds will call create-python-extension-zip.sh after the binaries have been signed and this will be included in the zip
56
56
#
57
- zip ${TARGET} /python-lang-extension libPythonExtension.so.1.1
57
+ zip ${TARGET} /python-lang-extension libPythonExtension.so.1.2
58
58
59
59
check_exit_code " Success: Created python-lang-extension.zip" " Error: Failed to create zip for python extension"
60
60
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ function build {
21
21
22
22
mkdir -p ${BUILD_OUTPUT} /packages
23
23
cd ${BUILD_OUTPUT}
24
- zip packages/python-lang-extension-linux libPythonExtension.so.1.1
24
+ zip packages/python-lang-extension-linux libPythonExtension.so.1.2
25
25
check_exit_code ${BUILD_CONFIGURATION}
26
26
}
27
27
Original file line number Diff line number Diff line change 3
3
cmake_minimum_required (VERSION 3.5 )
4
4
5
5
set (PYTHONEXTENSION_VERSION_MAJOR "1" )
6
- set (PYTHONEXTENSION_VERSION_MINOR "1 " )
6
+ set (PYTHONEXTENSION_VERSION_MINOR "2 " )
7
7
set (PYTHONEXTENSION_VERSION ${PYTHONEXTENSION_VERSION_MAJOR} .${PYTHONEXTENSION_VERSION_MINOR} )
8
8
set (PYTHON_VERSION "3.10" )
9
9
set (PYTHON_VERSION_NO_DOT "310" )
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ function build {
22
22
23
23
# Move the generated libs to configuration folder
24
24
#
25
- cp ${PYTHONEXTENSION_WORKING_DIR} /${CMAKE_CONFIGURATION} /libPythonExtension.so.1.1 .
25
+ cp ${PYTHONEXTENSION_WORKING_DIR} /${CMAKE_CONFIGURATION} /libPythonExtension.so.1.2 .
26
26
cp /usr/src/gtest/* .so .
27
27
28
28
ENL_ROOT=${ENL_ROOT} ./pythonextension-test --gtest_output=xml:${ENL_ROOT} /out/TestReport_PythonExtension-test.xml
You can’t perform that action at this time.
0 commit comments