Hi Xinke,
On Sun, Jan 28, 2018 at 03:22:47AM +0000, XINKE ZHANG wrote:
I built OsmoSGSN with the these following instructions.
My first curious question is: Why are you building from source rather than using the "latest" or "nightly" package feeds we are providing at osmocom.org?
<build instructions> git clone git://git.osmocom.org/osmo-sgsn cd osmo-sgsn autoreconf -fi ./configure --enable-iu make -j5 make check make install sudo ldconfig <build instructions>
And no error came out during building process, but no “osmo-sgsn” executable was found. Pls help me. Thank you in advance.
Please provide the log output generated by the build process. you can create this by something like
./configure --enable-iu 2>&1 | tee /tmp/configure.log make -j5 2>&1 | tee /tmp/make.log
etc. which ensures that both stdout and stderr end up in the respective .log file.