mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-02 02:51:42 +00:00
This is a major restructuring of the WPILib repository to simply build procedures and remove the remnants of Maven from everything except the eclipse plugins. Gradle files have been largely simplified or rewritten, taking advantage of splitting up parts of the build into separate build files for ease of reading. The eclipse plugins are now in a separate project, as is ntcore. All dependencies are resolved via Maven dependencies, with the Jenkins-maintained WPILib repo. Project structures have also been simplified: we no longer have separate subprojects inside wpilibc and wpilibj. Where possible, these changes hav been done with git renames, to make sure we still have full history for all repositories. Other unrelated subprojects have also been broken out: OutlineViewer is now a separate project. Change-Id: Ib4e2a6e1a2f66427a14f16612b0e0d69ed661878
43 lines
1.7 KiB
Bash
43 lines
1.7 KiB
Bash
#!/bin/bash
|
|
#This script should be able to generate the JNI
|
|
# bindings for NIVision. At some point,
|
|
# it should be integrated into the build system.
|
|
# Assumes running from allwpilib/wpilibj/wpilibJavaJNI/nivision
|
|
|
|
# Get structure sizes.
|
|
python gen_struct_sizer.py ../../../wpilibc/wpilibC++Devices/include/nivision.h nivision_2011.ini
|
|
arm-frc-linux-gnueabi-gcc -I../../../wpilibc/wpilibC++Devices/include -S struct_sizer.c
|
|
cat struct_sizer.s | python get_struct_size.py > nivision_arm.ini
|
|
|
|
python gen_struct_sizer.py ../../../wpilibc/wpilibC++Devices/include/NIIMAQdx.h imaqdx.ini
|
|
arm-frc-linux-gnueabi-gcc -I../../../wpilibc/wpilibC++Devices/include -S struct_sizer.c
|
|
cat struct_sizer.s | python get_struct_size.py > imaqdx_arm.ini
|
|
|
|
# Get functions actually in the .so; some functions are in the header but
|
|
# not the shared library!
|
|
arm-frc-linux-gnueabi-nm -D ../../../ni-libraries/libnivision.so.14.0.0 | cut -c 12- | grep ^imaq > nivision_funcs.txt
|
|
echo Priv_ReadJPEGString_C >> nivision_funcs.txt
|
|
arm-frc-linux-gnueabi-nm -D ../../../ni-libraries/libniimaqdx.so.14.0.0 | cut -c 12- | grep ^IMAQdx > imaqdx_funcs.txt
|
|
|
|
# Run python generator.
|
|
python gen_java.py \
|
|
../../../wpilibc/wpilibC++Devices/include/nivision.h \
|
|
nivision_arm.ini \
|
|
nivision_2011.ini \
|
|
nivision_funcs.txt \
|
|
\
|
|
../../../wpilibc/wpilibC++Devices/include/NIIMAQdx.h \
|
|
imaqdx_arm.ini \
|
|
imaqdx.ini \
|
|
imaqdx_funcs.txt \
|
|
\
|
|
dxattr.h \
|
|
imaqdx_arm.ini \
|
|
dxattr.ini \
|
|
dxattr_funcs.txt
|
|
|
|
# Stick generated files into appropriate places.
|
|
cp NIVision.cpp ../lib/NIVisionJNI.cpp
|
|
mkdir -p ../../wpilibJavaDevices/src/main/java/com/ni/vision
|
|
cp *.java ../../wpilibJavaDevices/src/main/java/com/ni/vision/
|