ymirsky / VulChecker

A deep learning model for localizing bugs in C/C++ source code (USENIX'23)
GNU General Public License v3.0
115 stars 12 forks source link

the difference in multi TARGETs #4

Closed flynightair closed 10 months ago

flynightair commented 10 months ago

Hi, ymirsky. If there are multi numbers of TARGET, how does the choice of TARGET affect the final result?

ymirsky commented 10 months ago

Different binaries (eg executables) can be compiled from the same source code. For example unit tests, portable libraries or the program itself. Therefore, it matters a lot. If your goal is to analyze the main program, then you must course the target for the main program.

On Tue, Aug 22, 2023, 12:05 flynightair @.***> wrote:

Hi, ymirsky. If there are multi numbers of TARGET, how does the choice of TARGET affect the final result?

— Reply to this email directly, view it on GitHub https://github.com/ymirsky/VulChecker/issues/4, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACYEV2Y5HTNHDRINNGJE5GLXWRY6PANCNFSM6AAAAAA3ZSSCJI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

flynightair commented 10 months ago

Different binaries (eg executables) can be compiled from the same source code. For example unit tests, portable libraries or the program itself. Therefore, it matters a lot. If your goal is to analyze the main program, then you must course the target for the main program.

OK, thanks