Questions tagged [map-files]

75 questions
1
vote
1 answer

CNTK load pictures with class affiliation in percent

I am trying to build a neuronal network with CNTK to estimate the age of a person. Currently I want to try an approach using only one class. So every picture gets label 0 but also an affiliation to the class in percent. So the net should learn that…
B. Ueno
  • 159
  • 2
  • 13
1
vote
0 answers

Generate map file only in Release using Delphi?

I'm using JCL to generate jdbg file and insert it into the exe. In the .dpr file I have the following lines: // JCL_DEBUG_EXPERT_GENERATEJDBG ON // JCL_DEBUG_EXPERT_INSERTJDBG ON // JCL_DEBUG_EXPERT_DELETEMAPFILE ON Project Options -> linking,…
Federico Pessina
  • 199
  • 1
  • 4
  • 15
1
vote
0 answers

Map file contains entry only for the first instantiation of template function?

Let's suppose I have the following template function in a.h file #include template void foo(T arg) { ...some code... std::cout<< arg <
1
vote
0 answers

gcc .map lists both libstdc++.so and libcpp.so - which one will be used for string, vector, etc

My .map file for the gcc linker output contains both libstdc++.so and libcpp.so and I've read that they're incompatible How will it know which C++ lib to select? If this executable instantiates a string then passes it to another executable that also…
Bob
  • 4,576
  • 7
  • 39
  • 107
1
vote
0 answers

Resolve the address supplied by the debugger with the address in the map file

I have an MFC application that has some library references, and it crashes in release mode. The only thing that is visible is the address of where the crash occurs. It is my understanding that this address should fit between two address ranges in…
netcat
  • 1,281
  • 1
  • 11
  • 21
1
vote
1 answer

How to set dwFileOffsetHigh & dwFileOffsetLow values in a map file view?

I'm new to memory mapping, what I want to do is to share a map file between many threads, for that I need to create the map file and use the function: MapViewOfFile so every thread can access to a part of the file, of course I need to send the…
Safa
  • 485
  • 2
  • 5
  • 24
1
vote
1 answer

How to generate a MAP file in visual Studio

Generaly IDEs has option to generate MAP file which shows the locations of the functions and the variables across the memory and the STACK and RAM usages. Where in Visual Studio Projects we can generate a MAP file and get this…
Raulp
  • 7,758
  • 20
  • 93
  • 155
1
vote
1 answer

Do not restart IIS when map files changes

I debug a site on the local IIS (localhost). I use a tool (Gulp) to generate minified JS files directly from "dev" to the "dist" folder that is used by the server. Gulp watches the dev/my.js file and once modified genetates the…
serge
  • 13,940
  • 35
  • 121
  • 205
1
vote
1 answer

How to create debug map file for Android app in Delphi XE6?

I have implemented a back trace for my android app compiled in XE6 using the Posix.Backtrace from https://bitbucket.org/shadow_cs/delphi-arm-backtrace. As it is now I get the backtrace but not the line numbers. I am looking to create the map file…
1
vote
0 answers

How to get only one type of geometry in Postgis with spatial analysis

I have 2 tables in my database (table1_lines has a lines geometry) and (table_2_points has a points geometry).. I’m doing a buffer of one selected line and I’m trying to get the points which are inside this buffer.. The result is a tables with 2…
sam
  • 15
  • 7
1
vote
1 answer

How do web browsers find a source map for a JavaScript file?

The following article explains that in order to find the source map of a JavaScript file such as jQuery, the web browser looks inside the JavaScript code and looks for the line containing the sourceMappingURL directive embedded in a JavaScript…
John Sonderson
  • 3,238
  • 6
  • 31
  • 45
1
vote
0 answers

How to build map file for kernel modules

I need to load 2 instances of a driver for 2 physical devices of the same kind on my platform. I have renamed all the conflicting function exports and I am able to load both the drivers corresponding to each of those 2 physical devices. But, I am…
Pradeep
  • 73
  • 1
  • 5
1
vote
1 answer

Delphi x64 map files issue

When i adding map files in 64 bit Delphi XE4 project (debug mode). Iv got some symbols like "_zn6", "_zn11" and etc. What the reason of it? In 32 bit project everything is good. If i chooses release mode then information is clear but very…
Sibay
  • 119
  • 1
  • 9
1
vote
0 answers

MapServer mapfile: Issue getting scalebar to display, no errors in log

Here is the code for SCALEBAR in the mapfile: SCALEBAR IMAGECOLOR 255 255 255 LABEL COLOR 0 0 0 SIZE SMALL END STYLE 1 SIZE 100 2 COLOR 0 0 0 UNITS MILES INTERVALS 2 TRANSPARENT FALSE STATUS ON END No glaring/noticeable…
Nubtacular
  • 1,367
  • 2
  • 18
  • 38
1
vote
0 answers

How to place libc.a objects in specific output sections in a GCC LD script?

I'm trying to place libc functions like memcpy, memset etc in specific sections of memory. I tried doing smth like this: .section1 { /path/to/libc.a otherobj.o } .section2 { *(.text) } .section3 { *(.data .bss) } using gcc's ld…
ordahan
  • 187
  • 9