-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIXED: Linking fails with undefined symbol on MacOS 10.7 #1
Open
HounD
wants to merge
49
commits into
balint256:master
Choose a base branch
from
HounD:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Linking CXX shared library libgnuradio-rds.dylib Undefined symbols for architecture x86_64: "boost::system::system_category()", referenced from: global constructors keyed to gr_rds_bpsk_demod.cc in gr_rds_bpsk_demod.cc.o __Z41__static_initialization_and_destruction_0ii.clone.79 in gr_rds_data_decoder.cc.o global constructors keyed to gr_rds_data_encoder.cc in gr_rds_data_encoder.cc.o global constructors keyed to gr_rds_rate_enforcer.cc in gr_rds_rate_enforcer.cc.o global constructors keyed to gr_rds_freq_divider.cc in gr_rds_freq_divider.cc.o "boost::system::generic_category()", referenced from: global constructors keyed to gr_rds_bpsk_demod.cc in gr_rds_bpsk_demod.cc.o __Z41__static_initialization_and_destruction_0ii.clone.79 in gr_rds_data_decoder.cc.o global constructors keyed to gr_rds_data_encoder.cc in gr_rds_data_encoder.cc.o global constructors keyed to gr_rds_rate_enforcer.cc in gr_rds_rate_enforcer.cc.o global constructors keyed to gr_rds_freq_divider.cc in gr_rds_freq_divider.cc.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status make[2]: *** [src/lib/libgnuradio-rds.dylib] Error 1 make[1]: *** [src/lib/CMakeFiles/gnuradio-rds.dir/all] Error 2 make: *** [all] Error 2
Changed x perms on files
…00 to 50000 Hz. This greatly reduces CPU usage, and doesn't appear to have any effect on the performance of the receiver. Without this change, the flowgraph can't even keep up on my relatively powerful system (Core i5-2520M CPU @ 2.50GHz), resulting in stuttering audio and RDS decoding errors.
…lating the L-R and RDS channels.
This reduces noise, and ensures that the pilot amplitude is equal to one, so that the L-R signal is not attenuated. Before this fix, it was so low that stereo audio could not be heard.
According to this document, the transmitter uses an RRC filter with alpha=1, so I assume the receiver would work best with a matched RRC filter: http://www.db-thueringen.de/servlets/DerivateServlet/Derivate-18898/54_IWK_2009_1_0_08.pdf
Various improvements to the sample GRC flowgraph
The previous demodulator was using the stereo pilot as a phase reference for the RDS PSK demodulator, but this doesn't always work because some stations (several in my area) do not seem to have their RDS modulator locked to their stereo pilot. GNU Radio's MPSK receiver block uses a Costas loop to recover the PSK carrier and decodes these stations well.
Various improvements to the sample GRC flowgraph
…constantly rescaling.
Set V scale parameter for the RDS constellation plot to stop it from con...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Linking CXX shared library libgnuradio-rds.dylib
Undefined symbols for architecture x86_64:
"boost::system::system_category()", referenced from:
global constructors keyed to gr_rds_bpsk_demod.cc in
gr_rds_bpsk_demod.cc.o
__Z41__static_initialization_and_destruction_0ii.clone.79 in
gr_rds_data_decoder.cc.o
global constructors keyed to gr_rds_data_encoder.cc in
gr_rds_data_encoder.cc.o
global constructors keyed to gr_rds_rate_enforcer.cc in
gr_rds_rate_enforcer.cc.o
global constructors keyed to gr_rds_freq_divider.cc in
gr_rds_freq_divider.cc.o
"boost::system::generic_category()", referenced from:
global constructors keyed to gr_rds_bpsk_demod.cc in
gr_rds_bpsk_demod.cc.o
__Z41__static_initialization_and_destruction_0ii.clone.79 in
gr_rds_data_decoder.cc.o
global constructors keyed to gr_rds_data_encoder.cc in
gr_rds_data_encoder.cc.o
global constructors keyed to gr_rds_rate_enforcer.cc in
gr_rds_rate_enforcer.cc.o
global constructors keyed to gr_rds_freq_divider.cc in
gr_rds_freq_divider.cc.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status
make[2]: *** [src/lib/libgnuradio-rds.dylib] Error 1
make[1]: *** [src/lib/CMakeFiles/gnuradio-rds.dir/all] Error 2
make: *** [all] Error 2