Questions tagged [missing-symbols]

Missing symbols (or missing characters) are string contents had been removed unpredictably or by accident during processing (encoding etc.)

39 questions
9
votes
5 answers

Objective-C Class Reference: Symbols not found error

I've been working on this iPhone app for a while now, and I had it completely finished and working. The project I was expanding on was downloaded from a subversion repository online that my professor had given me access too. I accidentally didn't…
ReCon11
  • 103
  • 1
  • 1
  • 5
8
votes
0 answers

Missing symbol names while profiling in Instruments 7

I don't see any symbol names when I'm profiling application for iOS 8. If I run profiler on simulator with iOS 9 everything works fine. Then I close instruments and switch to simulator with iOS 8.4 and I can see only hexadecimal addresses which…
eSeverus
  • 492
  • 1
  • 5
  • 15
6
votes
2 answers

Java: Cannot find symbol error on Map, HashMap

I'm trying to run this code: import java.util.*; public class ScanReg { public Map> scanMap = new HashMap>(); } within this class: import java.util.*; public class NxtStart { ScanReg sr = new…
Lasse A Karlsen
  • 761
  • 5
  • 13
  • 23
6
votes
2 answers

Symbols are not loading on dynamic linking of wfdb library using node-gyp on macOS High Sierra

i am trying to create a dynamic library having dependency on WFDB library ( https://www.physionet.org/physiotools/wfdb.shtml ). My c++ code looks as: #include #include #include #include extern "C" { …
abhinash
  • 188
  • 10
6
votes
2 answers

Understanding Xcode build error

Solution: so Mopub's instructions don't mention that EventKit and EventKitUI are required. Adding these in addition to the frameworks mentioned by MoPub got the project to build. Update: MoPub's instructions have been updated. I'm integrating…
SundayMonday
  • 17,607
  • 27
  • 94
  • 151
5
votes
1 answer

GDB doesn't find debugging symbols in Rust executable

This is my Cargo.toml with debugging settings: [package] name = "rpolysolve" version = "0.1.0" authors = ["stiv"] [dependencies] [profile.dev] debug = true opt-level = 0 As I can see from console output, cargo has not removed debug…
Stepan Yakovenko
  • 6,197
  • 19
  • 92
  • 176
4
votes
2 answers

R plots: Corrupted/missing characters for devices other than pdf

I am having a problem where some graphics devices print missing glyph boxes instead of characters. Actually, the only device I have tried so far that renders characters is PDF. Since I recently updated R and rebuilt a bunch of packages, I suspect…
Stonecraft
  • 652
  • 9
  • 22
3
votes
4 answers

Cannot get PDB to load. "A matching symbol file was not found in this folder."

I've got a project that debugging was working just fine about an hour ago, and now after the latest rebuild I can't get it to load the symbol files, so I cannot hit my breakpoints. I've tried everything suggested here on Fixing “The breakpoint will…
CBRF23
  • 1,291
  • 1
  • 14
  • 42
3
votes
2 answers

Taking pointer to member std::string::size fails to link with libc++ but works with libstdc++

I'm on a project where I need to use libc++. I'm come up with the following problem: When I try to compile the following code: #include int main() { std::string::size_type (std::string::*function)() const = &std::string::size; …
3
votes
4 answers

Using Crypto++ with clang

I'm attempting to get the following Crypto++ (C++ Class Library of Cryptographic Schemes) example to work on a iMac using clang++. Example SHA256 hash; byte digest[ SHA256::DIGESTSIZE ]; hash.CalculateDigest( digest, (byte*) &value[ 0 ],…
Ben Crowhurst
  • 7,042
  • 5
  • 40
  • 72
2
votes
0 answers

OSX Browser does not display certain special Unicode characters/symbols

OSX 10.14.6, Safari 13.0.4 (Unicode UTF-8), Firefox 72.0.1, From this screen shot you can see about 2/3 of the way down the page my browser stops displaying certain special characters leaving just a square box.…
spencemw
  • 81
  • 2
  • 10
1
vote
1 answer

Need to send an email if particular entry is missing from SVN commit message

I need to send an email if my SVN commit message is missing from particular entries. My SVN commit message would be like: Key1 : Value1 Key2 : Value2 Key3 : Value3 Key4 : Value4 Key5 : Value5 If a developer checks the code without Value1 or Value2,…
Mahi
  • 11
  • 1
1
vote
1 answer

DSO missing from command line when compiling

I have seen here several posts with similar questions and tried many suggestions but still, I haven't found a way around my problem. I use for my work some cpp codes that I have to slightly change according to my needs. They have their own makefile…
user286686
  • 11
  • 2
1
vote
2 answers

How can I expand the apostrophe in a word (s'cream)?

Here is my word list. (In reality I am using a big list.) banana fish scream screaming suncream suncreams I want to expand s'cream. It must match suncream only. Not match scream because there are no characters for the apostrophe. Not match…
1
vote
1 answer

Adding rows in a dataframe for missing days for each entity

I have the following problem: my dataframes look something like this: ID Date Value 1 2016-06-12 2 1 2016-06-13 2.5 1 2016-06-16 4 2 2016-06-12 3 2 2016-06-15 1.5 As you can see I have missing days in my data. So I much rather…
Salocin R.
  • 11
  • 1
1
2 3