Search found 280 matches
- Mon Jan 16, 2023 2:33 pm
- Forum: NetBurner Software
- Topic: "make -j12 all" terminated with exit code 2. Build might be incomplete.
- Replies: 3
- Views: 213
Re: "make -j12 all" terminated with exit code 2. Build might be incomplete.
Running the bat file is for command line. It sets the path for the current command line instance. The installer should have set up NNDK_ROOT as a system environment variable as well. Check your system env variables: From the start menu, search for Environment Vairables, and click on Edit the system ...
- Mon Oct 24, 2022 2:11 pm
- Forum: NetBurner Software
- Topic: NNDK in docker
- Replies: 1
- Views: 298
NNDK in docker
We use Docker extensively in testing our releases. I posted the Dockerfile that we use to test the NNDK so that others may use it as well. Its up on GitHub. The Dockerfile builds into a Linux installation of the NNDK with all required Linux utilities installed. If you are doing more then just testin...
- Fri Sep 09, 2022 3:49 pm
- Forum: NetBurner Software
- Topic: Failed to load the JNI
- Replies: 1
- Views: 399
Re: Failed to load the JNI
Since 3.3.7, NBEclipse now includes it's own JRE, embedded within it's installation directory. For the 3.X tools, you don't need to modify any java system environment settings. For 2.X, it still needs a JRE 11 32-bit on the system path.
- Fri Apr 29, 2022 1:59 pm
- Forum: NetBurner's Eclipse IDE
- Topic: GDB fails with "joined drive" error
- Replies: 5
- Views: 3141
Re: GDB fails with "joined drive" error
Hello, Have you been successful in debugging the gdbdemo example in the examples directory? Are you sure that you created a NetBurner application launch configuration, and not a C/C++ Application? It sounds like you are using the NetBurner Application type, but just want to verify. Can you export yo...
- Mon Nov 08, 2021 4:23 pm
- Forum: NetBurner Software
- Topic: Code signing...
- Replies: 6
- Views: 1790
Re: Code signing...
Just test out the signing feature in 3.3.4. Can you automate the signing when build with Eclipse IDE? After NBEclipse has built your project: 1. Create an External Tool Configuration with Run->External Tools->External Tools Configurations 2. In the new external tool configuration, specify the follo...
- Fri Jul 02, 2021 3:10 pm
- Forum: NetBurner's Eclipse IDE
- Topic: NBEclipse 3.3.2 FrameworkEvent ERROR
- Replies: 3
- Views: 1642
Re: NBEclipse 3.3.2 FrameworkEvent ERROR
NNDK 3.3.2 included an update to NBEclipse. The new version required Java 11 64bit. Based on your log file, it appears that Java 8 is running.
- Mon Mar 01, 2021 9:37 am
- Forum: NetBurner Software
- Topic: making my own libraries or 3rd party libraries
- Replies: 3
- Views: 1531
Re: making my own libraries or 3rd party libraries
Hello, In your project makefile, you are going to want to set the variable TARGET_TYPE to a library. You have 3 different options for TARGET_TYPE: # Set TARGET_TYPE in your makefile to generate a target. # Supported makefile target types: (default = app) # nblib : build .a file and place in nburn li...
- Mon Oct 12, 2020 11:03 am
- Forum: NetBurner Software
- Topic: Web with SSL enabled
- Replies: 8
- Views: 2619
Re: Web with SSL enabled
You can modify the comphtml flags directly. See screenshot Add the flag "-dindex.htm" if you want the default file to be index.htm instead of index.html
- Mon Sep 14, 2020 10:36 pm
- Forum: NetBurner Software
- Topic: Compile Error Building System for v2.9.3
- Replies: 21
- Views: 6537
Re: Compile Error Building System for v2.9.3
The path in the output is because you are using a prebuilt library. In fact, I can tell that you are using the library that ships, since that path is from our continuous integration build machine. Paths do not really matter within prebuilt static C++ libraries. If you rebuild your libraries, the pat...
- Wed Mar 04, 2020 3:52 pm
- Forum: NetBurner's Eclipse IDE
- Topic: macOS Catalina will not run 2.9.2
- Replies: 1
- Views: 2295
Re: macOS Catalina will not run 2.9.2
Hello, Yes, this is due to Catalina not allowing 32-bit files, and Java6 provided by apple being only 32 bit. Apple has not released a 64-bit version of the Java6, and likely never will. We have been able to get around this locally by removing the 32-bit check from the apple java6 installation file....