Questions tagged [missing-symbols]

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

44 questions
0
votes
1 answer

iOS App backed with cpp dyld crashes with error "missing symbol called"

I got an iOS App with following nested structure: iOS App (swift + objC) { iOS Framework (objC + C++) { dynamic library (C++) { static library (C++) } } } It links and compiles successfully, but at runtime crashes with an error…
Andrey Lyubimov
  • 663
  • 6
  • 22
0
votes
0 answers

Interrupted debug at loading symbol yielded to ntdll.pdb missing

I was launching and stopping debug in visual studio really quick as I was testing something in a DLL entry point and at some point I clicked by error on "cancel" in the loading symbols window. Since then, when I launch debug, I keep having an access…
0
votes
1 answer

Swing can't be found

I have this version of Java installed on a Linux Mint 20.3 Una : java 17.0.1 2021-10-19 LTS Java(TM) SE Runtime Environment (build 17.0.1+12-LTS-39) Java HotSpot(TM) 64-Bit Server VM (build 17.0.1+12-LTS-39, mixed mode, sharing) Everything works…
jfo420
  • 11
  • 2
0
votes
0 answers

Missing ) after argument list in Centos 7 VPS Server, Running normal in my windows

i have an error in nodejs, it says missing ) after argument list, it running well on visual studio code windows, but when i deploy to my Centos 7 VPS server , the error display, is it Operation System bug or else? what should i do bro? this is the…
0
votes
0 answers

how to find missing library dependency(or root cause) in static library and when cmake target is built using externalproject method

I want to use static target for jaeger instead of linking to a dynamic target, static target compiles fine but when I use it in my codebase, I see undefined reference errors: tried: dynamic/static linking for thrift explicitly to ceph(primary…
0
votes
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…
0
votes
2 answers

Missing Symbols in VS2010 Build

Using VS2010 with an older Win32 C/C++ Project, I'm trying to track down missing symbols in a project recently built. In the past I've used lib.exe to examine contents of libraries, but that doesn't seem to work anymore. For example lib…
Max Yaffe
  • 1,317
  • 1
  • 14
  • 26
0
votes
3 answers

Changing NA Values based on cell values in same column in R

V1 <- c("Name", "Paul", "Name", "Sarah", NA, NA, NA, NA, "Name", "Carl", NA, NA, "Name", "Alice", "Name", "Rita") V2 <- c("Name", "Paul", "Name", "Sarah", "Name", "Sarah", "Name", "Sarah", "Name", "Carl", "Name", "Carl", "Name", "Alice", "Name",…
BanffBoss122
  • 149
  • 9
0
votes
1 answer

MSVC2019 Missing symbol names from static library

I'm newbe with C++ please help me if someone can! I've made a binary bigint object which work well. I complied it to a static library and tried to include into an another program but it fails with errors like this: combinations.obj||error LNK2019:…
froli78
  • 15
  • 4
0
votes
1 answer

shared library links or fails to link with another shared library, depending of that one's namespec

In the project I'm building from source (Nix 2.3 FWIW), one shared library (libnixstore.so) is being linked with another shared library (libnixutil.so). The command line for this is: x86_64-slackware-linux-g++ -std=c++17 -o…
0
votes
0 answers

Switching between LineChart and AreaChart ruins LineChart series symbol dots

When I load a data series into my LineChart, like linechartVar.getData().addAll(series); I get the intended result: add series to linechart Than, I load the same series to my AreaChart and at the same time I disable LineChart visibility. So I get…
Ricky
  • 553
  • 6
  • 21
0
votes
1 answer

Weird looking symbols in dat file?

Learning to program in C. Used a textbook to learn about writing data randomly to a random access file. It seems like the textbook code works ok. However the output in the Notepad file is: Jones Errol Ÿru ”#e©A Jones …
Raphael Jones
  • 115
  • 2
  • 12
0
votes
2 answers

Depending on a shared library that has an undefined symbol

I am trying to build a shared library that depends on another shared library on which I have no control. Here is how I build it: g++ -fPIC -Wall -Wextra -O2 -g -fpermissive -Wl,--no-allow-shlib-undefined -Wl,--no-undefined \ -I$JAVA_HOME/include…
-2
votes
1 answer

Have Regex Find Absent Word

I need to find entries which begin with @ and don't have word "keyword" before the next @ within this…
stx932
  • 145
  • 9
1 2
3