CDP's fork of the open62541 OPC UA stack (https://github.com/open62541/open62541)

FlorianPalm 9310d323c9 changed .gitignore again 10 年之前
autom4te.cache 5d94d089aa changed folder structure part 2 10 年之前
bin 9310d323c9 changed .gitignore again 10 年之前
build-test 5d94d089aa changed folder structure part 2 10 年之前
doc 5d94d089aa changed folder structure part 2 10 年之前
examples 9310d323c9 changed .gitignore again 10 年之前
lib 9310d323c9 changed .gitignore again 10 年之前
m4 5d94d089aa changed folder structure part 2 10 年之前
src 9310d323c9 changed .gitignore again 10 年之前
tests 9310d323c9 changed .gitignore again 10 年之前
.gitignore 9310d323c9 changed .gitignore again 10 年之前
AUTHORS 5d94d089aa changed folder structure part 2 10 年之前
COPYING 5d94d089aa changed folder structure part 2 10 年之前
ChangeLog 5d94d089aa changed folder structure part 2 10 年之前
INSTALL 5d94d089aa changed folder structure part 2 10 年之前
LICENSE 9310d323c9 changed .gitignore again 10 年之前
Makefile 9310d323c9 changed .gitignore again 10 年之前
Makefile.am 5d94d089aa changed folder structure part 2 10 年之前
Makefile.in 5d94d089aa changed folder structure part 2 10 年之前
NEWS 5d94d089aa changed folder structure part 2 10 年之前
README.md 52cb40ecdc Update README.md 10 年之前
aclocal.m4 5d94d089aa changed folder structure part 2 10 年之前
autogen.sh 5d94d089aa changed folder structure part 2 10 年之前
compile 5d94d089aa changed folder structure part 2 10 年之前
configure 5d94d089aa changed folder structure part 2 10 年之前
configure.ac 5d94d089aa changed folder structure part 2 10 年之前
depcomp 5d94d089aa changed folder structure part 2 10 年之前
install-sh 5d94d089aa changed folder structure part 2 10 年之前
libtool 5d94d089aa changed folder structure part 2 10 年之前
ltmain.sh 5d94d089aa changed folder structure part 2 10 年之前
missing 5d94d089aa changed folder structure part 2 10 年之前

README.md

Open62541

An open communication stack implementation of OPC UA.

Getting dependencies

Ubuntu

Getting gcc toolchain:
sudo apt-get install build-essential subversion git
Getting and installing check 0.9.12
$ svn checkout svn://svn.code.sf.net/p/check/code/trunk check-code
$ cd check-code
$ autoreconf --install
$ ./configure
$ make
$ sudo make install
$ sudo ldconfig

Windows

Getting MinGW and MSYS:
Get Gtk+ bundle (just for m4 marcros and pkg-config):
Get git (IMPORTANT: get 1.8.4, since 1.8.5.2 has a bug):
Getting check unit test framework:
  • Open MinGW\msys\1.0\msys.bat
$ svn checkout svn://svn.code.sf.net/p/check/code/trunk check-code
$ cd check-code
$ autoreconf --install
$ ./configure --prefix=
$ make
$ make install

Building

$ cd OPCUAServer
$ ./configure
$ make
$ make check

Rebuilding configure tools (only if configure.am is changed)

$ ./autogen.sh