cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

meson.build (291B)


      1stress = executable(
      2  'stress',
      3  files('stress.c'),
      4  dependencies: [glib],
      5  link_args: ['-static'],
      6  build_by_default: false,
      7)
      8
      9custom_target(
     10  'initrd-stress.img',
     11  output: 'initrd-stress.img',
     12  input: stress,
     13  command: [find_program('initrd-stress.sh'), '@OUTPUT@', '@INPUT@']
     14)